# HG changeset patch # User Steve Losh # Date 1254621920 14400 # Node ID 37c381bc813d8ade0c879a61f1193598a3347f90 # Parent cebed91e780d96163abbff8c4d93ec6b5a57af46 Pull out the download list into a new file. diff -r cebed91e780d -r 37c381bc813d templates/base.html --- 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 %} diff -r cebed91e780d -r 37c381bc813d templates/data --- /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