diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2009-11-12 21:58:26 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2009-11-12 21:58:26 +0000 |
commit | b0464d2bcb252c8d2cef9dfca9dd7b40ec498c55 (patch) | |
tree | f39715fefd2828fd794a25fcf5301ed1ffd14ce0 /templates/archives/writing.html | |
parent | c9022d38a303dcd756d34a2cbc4e3c49b22e0cf2 (diff) |
speed optimizations
Diffstat (limited to 'templates/archives/writing.html')
-rw-r--r-- | templates/archives/writing.html | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/templates/archives/writing.html b/templates/archives/writing.html index a3d1a3b..7071a4e 100644 --- a/templates/archives/writing.html +++ b/templates/archives/writing.html @@ -47,20 +47,12 @@ <div class="blok"> <h4 class="first">Regions</h4> <ul> - {%for region in region_list %} - <li><a href="/writing/{{region.slug}}/1/" title="See all writing from {{region.name|title}}">{{region.name}}</a></li> - </li> - {% endfor %} + {% include 'includes/regions_sidebar.html' %} </ul> </div> <div class="blok"> <h4>Countries</h4> - <ul> - {%for country in country_list %} - <li><a href="/writing/{{country.slug}}/1/" title="See all writing from {{country.name|title}}">{{country.name}}</a></li> - </li> - {% endfor %} - </ul> + {% include 'includes/country_sidebar.html' %} </div> |