Skip to content

Instantly share code, notes, and snippets.

@xhezairbey
Created December 20, 2011 12:44
Show Gist options
  • Save xhezairbey/1501453 to your computer and use it in GitHub Desktop.
Save xhezairbey/1501453 to your computer and use it in GitHub Desktop.
Chyrp Drop-down Archive List
{% if theme.archives_list %}
<h4>${ "ARCHIVE" | translate }</h4>
<br />
<select name="archive" id="archive" onchange="location = this.options[this.selectedIndex].value;">
{% for archive in theme.archives_list %}
<option value="$archive.url">${ archive.when | strftime("%B %Y" | translate) } ($archive.count)</option>
{% endfor %}
</select>
<p><a href="{% url "archive" %}">${ "All &rarr;" | translate }</a></p>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment