view gpp/templates/news/base.html @ 6:b6263ac72052

Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 Apr 2009 22:50:56 +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 &amp; 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 %}