comparison gpp/templates/news/base.html @ 312:88b2b9cb8c1f

Fixing #142; cut over to the django.contrib.staticfiles app.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Jan 2011 02:56:10 +0000
parents daa2916f5b34
children
comparison
equal deleted inserted replaced
311:b1c39788e511 312:88b2b9cb8c1f
2 {% load url from future %} 2 {% load url from future %}
3 {% block custom_head %} 3 {% block custom_head %}
4 <link rel="alternate" type="application/rss+xml" title="SurfGuitar101 News" href="{% url 'feeds-news' %}" /> 4 <link rel="alternate" type="application/rss+xml" title="SurfGuitar101 News" href="{% url 'feeds-news' %}" />
5 {% endblock %} 5 {% endblock %}
6 {% block custom_css %} 6 {% block custom_css %}
7 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/news.css" /> 7 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/news.css" />
8 {% block news_css %}{% endblock %} 8 {% block news_css %}{% endblock %}
9 {% endblock %} 9 {% endblock %}
10 {% block content %} 10 {% block content %}
11 <h2>SurfGuitar101 News &amp; Articles <a href="{% url 'feeds-news' %}"><img src="{{ MEDIA_URL }}icons/feed.png" alt="News Feed" title="News Feed" /></a></h2> 11 <h2>SurfGuitar101 News &amp; Articles <a href="{% url 'feeds-news' %}"><img src="{{ STATIC_URL }}icons/feed.png" alt="News Feed" title="News Feed" /></a></h2>
12 12
13 <ul class="app-menu"> 13 <ul class="app-menu">
14 <li><a href="{% url 'news-index_page' %}">News Main</a></li> 14 <li><a href="{% url 'news-index_page' %}">News Main</a></li>
15 <li><a href="{% url 'news-archive_index' %}">Archive</a></li> 15 <li><a href="{% url 'news-archive_index' %}">Archive</a></li>
16 <li><a href="{% url 'news-category_index' %}">Categories</a></li> 16 <li><a href="{% url 'news-category_index' %}">Categories</a></li>