Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
==========================================
Design Patterns for pinax-theme-foundation
==========================================

Expand Down
2 changes: 1 addition & 1 deletion foundation_theme_site/templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<a href="#">Create Menus Easily</a>
<ul class="dropdown">
<li><a href="{% url how_to_install %}"><span class="glyph general">9</span>Easily Installed</a></li>
<li><a href="{% url menu_howto %}"><span class="glyph general">f</span>Dropdown Menus</a></li>
<li><a href="{% url menu_how_to %}"><span class="glyph general">f</span>Dropdown Menus</a></li>
<li><a href="{% url mobile_in_mind %}"><span class="glyph general">r</span>Mobile-in-Mind Design</a></li>
<li><a href="{% url responsive_design %}"><span class="glyph general">0</span>Responsive Design</a></li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions foundation_theme_site/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"template": "how_to_install.html",
}, name="how_to_install"),

url(r"^menu_howto/$",direct_to_template, {
"template": "menu_howto.html",
url(r"^menu_how_to/$",direct_to_template, {
"template": "menu_how_to.html",
}, name="menu_howto"),

url(r"^mobile_in_mind/$",direct_to_template, {
Expand Down