| /trunk/blog/templates/base.html r2 | /trunk/blog/templates/base.html r90 | ||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|---|---|---|---|
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> | 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
| 3 | 3 | ||
| 4 | <html lang="en"> | 4 | <html lang="en"> |
| 5 | <head> | 5 | <head> |
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 7 | <title>{% block title %}{% endblock %}</title> | 7 | <title>{% block title %}{% endblock %}</title> |
| 8 | <meta name="author" content="Nathan Borror"> | ||
| 9 | </head> | 8 | </head> |
| 10 | <body id="{% block body_id %}{% endblock %}"> | 9 | <body id="{% block body_id %}{% endblock %}"> |
| 11 | <div id="body"> | 10 | <div id="body"> |
| 12 | {% block body %} | 11 | {% block body %} |
| 13 | <div> | 12 | <div> |
| 14 | {% block content_title %}{% endblock %} | 13 | {% block content_title %}{% endblock %} |
| 15 | </div> | 14 | </div> |
| 16 | <div class="content"> | 15 | <div class="content"> |
| 17 | {% block content %}{% endblock %} | 16 | {% block content %}{% endblock %} |
| 18 | </div> | 17 | </div> |
| 19 | {% endblock %} | 18 | {% endblock %} |
| 20 | </div> | 19 | </div> |
| 21 | </body> | 20 | </body> |
| 22 | </html> | 21 | </html> |