comparison gpp/templates/news/base.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children b1766b1bda45
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'base.html' %}
2 {% block custom_head %}
3 <link rel="alternate" type="application/rss+xml" title="SurfGuitar101 News" href="{% url feeds-news url="news" %}" />
4 {% endblock %}
5 {% block custom_css %}
6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/news.css" />
7 {% block news_css %}{% endblock %}
8 {% endblock %}
9 {% block content %}
10 <h2>SurfGuitar101 News &amp; Articles</h2>
11 {% if search_form %}
12 <div class="news-search">
13 <form action="{% url news-search_page page=1 %}" method="post">
14 <p>{{ search_form.text }} {{ search_form.category }} <input type="submit" value="Search" /></p>
15 </form>
16 </div>
17 {% endif %}
18 <ul class="app-menu">
19 <li><a href="{% url news-index_page page=1 %}">News Main</a></li>
20 <li><a href="{% url news-archive_index %}">Archive</a></li>
21 <li><a href="{% url news.views.category_index %}">Categories</a></li>
22 <li><a href="{% url news-tag_index %}">Tags</a></li>
23 <li><a href="{% url news.views.submit %}">Submit News</a></li>
24 </ul>
25 {% block news_content %}
26 {% endblock %}
27 {% endblock %}