diff options
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> |