templates/flatpages/splash.html @ 315df6ca542d
Pulled out the URLs into app-specific files.
It's so much cleaner!
author |
Steve Losh <steve@stevelosh.com> |
date |
Fri, 13 Feb 2009 20:40:27 -0500 |
parents |
09b70d37fb65 |
children |
677d5ff5c56e |
{% extends "flatpages/default.html" %}
{% load typogrify %}
{% block style %}
<link rel="stylesheet" href="/site-media/style/splash.css"
type="text/css"/>
{% endblock %}
{% block content %}
{% filter typogrify %}
<div id="splash-list">
<div class="splash-list-entry">
<h2>I like writing. »</h2>
</div>
<div class="splash-list-entry">
<h2>Things I've made. »</h2>
</div>
<div class="splash-list-entry">
<h2>Too small to blog, too big to tweet. »</h2>
</div>
<div class="splash-list-entry">
<h2>Who am I and what is this site? »</h2>
</div>
<div class="splash-list-entry">
<h2>Stay up to date. »</h2>
</div>
</div>
{% endfilter %}
{% endblock %}