13 lines
629 B
HTML
13 lines
629 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<div id="browsebycategory-listcategories">
|
|
<div class="browsebycategory-categories"><a href="{{ url_for('artistsindex') }}">BROWSE BY CREATOR/CONTRIBUTOR</a></div>
|
|
<div class="browsebycategory-categories"><a href="{{ url_for('publishersindex') }}">BROWSE BY PUBLISHER</a></div>
|
|
<div class="browsebycategory-categories"><a href="{{ url_for('selfpublishedindex') }}">BROWSE ALL SELF-PUBLISHED</a></div>
|
|
<div class="browsebycategory-categories"><a href="{{ url_for('zinesindex') }}">BROWSE ALL ZINES</a></div>
|
|
|
|
<div>More categories coming soon...</div>
|
|
</div>
|
|
|
|
{% endblock content %} |