Mercurial > public > sg101
view gpp/templates/news/base.html @ 133:c515b7401078
Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 27 Nov 2009 00:21:47 +0000 |
parents | dbd703f7d63a |
children | b1766b1bda45 |
line wrap: on
line source
{% extends 'base.html' %} {% block custom_head %} <link rel="alternate" type="application/rss+xml" title="SurfGuitar101 News" href="{% url feeds-news url="news" %}" /> {% endblock %} {% block custom_css %} <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/news.css" /> {% block news_css %}{% endblock %} {% endblock %} {% block content %} <h2>SurfGuitar101 News & Articles</h2> {% if search_form %} <div class="news-search"> <form action="{% url news-search_page page=1 %}" method="post"> <p>{{ search_form.text }} {{ search_form.category }} <input type="submit" value="Search" /></p> </form> </div> {% endif %} <ul class="app-menu"> <li><a href="{% url news-index_page page=1 %}">News Main</a></li> <li><a href="{% url news-archive_index %}">Archive</a></li> <li><a href="{% url news.views.category_index %}">Categories</a></li> <li><a href="{% url news-tag_index %}">Tags</a></li> <li><a href="{% url news.views.submit %}">Submit News</a></li> </ul> {% block news_content %} {% endblock %} {% endblock %}