templates/flatpages/splash.html @ 09b70d37fb65

Added the Typogrify template tag and started using it everywhere!
author Steve Losh <steve@stevelosh.com>
date Sat, 24 Jan 2009 00:51:16 -0500
parents 5d5a567385bb
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. &raquo;</h2>
		</div>
		<div class="splash-list-entry">
			<h2>Things I've made. &raquo;</h2>
		</div>
		<div class="splash-list-entry">
			<h2>Too small to blog, too big to tweet. &raquo;</h2>
		</div>
		<div class="splash-list-entry">
			<h2>Who am I and what is this site? &raquo;</h2>
		</div>
		<div class="splash-list-entry">
			<h2>Stay up to date. &raquo;</h2>
		</div>
	</div>
{% endfilter %}
{% endblock %}