changeset 258:37c381bc813d

Pull out the download list into a new file.
author Steve Losh <steve@stevelosh.com>
date Sat, 03 Oct 2009 22:05:20 -0400
parents cebed91e780d
children b18d0f96829d
files templates/base.html templates/data
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/templates/base.html	Sat Oct 03 21:53:01 2009 -0400
+++ b/templates/base.html	Sat Oct 03 22:05:20 2009 -0400
@@ -1,4 +1,4 @@
-{% set downloads = {'1.3.1': {'windows': 'linkwin', 'os.x': 'linkosx'}} %}
+{% from 'data' import downloads %}
 
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/data	Sat Oct 03 22:05:20 2009 -0400
@@ -0,0 +1,1 @@
+{% set downloads = {'1.3.1': {'windows': 'linkwin', 'os.x': 'linkosx'}} %}
\ No newline at end of file