agdj/core/templates/blog/blog.html
author Adam Gomaa <code@adam.gomaa.us>
Sun Feb 01 02:05:35 2009 -0500
changeset 417 41bb13fc4f7d
parent 337 ed20c669d57c
child 492 0abb277164fc
permissions -rw-r--r--
Move to a 2-column layout - comments on the right.
code@9
     1
{% extends "base.html" %}
code@9
     2
code@139
     3
{% block title %}Adam Gomaa's Blog{% endblock %}
code@43
     4
code@315
     5
{% block rss %}
code@337
     6
<link rel="alternate" title="Adam Gomaa's Blog Feed" href="/blog/feed/" type="application/rss+xml">
code@315
     7
{% endblock rss %}
code@315
     8
code@139
     9
{% block header %}
code@139
    10
<h1><a href="/">My</a> <a href="{% url agdj.blog.views.post_list %}">Blog</a></h1>
code@43
    11
{% endblock %}
code@43
    12