init
This commit is contained in:
commit
536c3856e1
89 changed files with 8421 additions and 0 deletions
31
templates/taxonomy_single.html
Normal file
31
templates/taxonomy_single.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
{% extends "index.html" %}
|
||||
|
||||
{% import "post_macros.html" as post_macros %}
|
||||
{% import "index_macros.html" as index_macros %}
|
||||
|
||||
{% block content %}
|
||||
<!-- START NAV -->
|
||||
{% block header %}
|
||||
{{ super() }}
|
||||
{% endblock header %}
|
||||
<!-- END NAV -->
|
||||
<main>
|
||||
<!-- START HERO TITLE -->
|
||||
{{ index_macros::hero(title=title) }}
|
||||
<!-- END HERO TITLE -->
|
||||
<div class="container">
|
||||
<!-- START ARTICLE FEED -->
|
||||
{% if paginator %}
|
||||
{{ index_macros::list_articles(pages=paginator.pages) }}
|
||||
{% else %}
|
||||
{{ index_macros::list_articles(pages=term.pages) }}
|
||||
{% endif %}
|
||||
<!-- END ARTICLE FEED -->
|
||||
<!-- START PAGINATION -->
|
||||
{% if paginator %}
|
||||
{{ index_macros::paginate(paginator=paginator) }}
|
||||
{% endif %}
|
||||
<!-- END PAGINATION -->
|
||||
</div>
|
||||
</main>
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue