view gpp/templates/news/base.html @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +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 %}