DAAP_interface/templates/browsebycategory.html

20 lines
1.2 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<div class="pagetitle" id="browseby-title">BROWSE BY</div>
<div id="browsebycategory-listcategories">
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('datesindex_recent') }}">BROWSE ALL RECENTLY ADDED</a></div>
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('datesindex_asc') }}">BROWSE BY PUBLICATION DATE FROM OLDEST</a></div>
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('datesindex_desc') }}">BROWSE BY PUBLICATION DATE FROM NEWEST</a></div>
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('artistsindex') }}">BROWSE BY CREATOR/CONTRIBUTOR</a></div>
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('publishersindex') }}">BROWSE BY PUBLISHER</a></div>
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('selfpublishedindex') }}">BROWSE ALL SELF-PUBLISHED</a></div>
<div class="browsebycategory-categories primary-button"><a href="{{ url_for('zinesindex') }}">BROWSE ALL ZINES</a></div>
</div>
<div class="soon-nofix">More categories coming soon...</div>
{% endblock content %}