diff options
author | Justin Mayer <entroP@gmail.com> | 2017-02-28 11:31:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-28 11:31:30 -0800 |
commit | ef412e6bd0a9e0e93bb3ae377725b41c63d49a49 (patch) | |
tree | ba7eddb71d7777e02fac7633b2cd86224b29341c /ops/templates/category.html | |
parent | adaa0c62ac0230ee7a168524554d9176c57a48a4 (diff) | |
parent | 1f3170df75d42d1cab8860080d0c254fb1d9355e (diff) | |
download | pelican-themes-ef412e6bd0a9e0e93bb3ae377725b41c63d49a49.tar.gz |
Merge pull request #496 from kosmgco/master
Rename Coding-Now theme to Ops
Diffstat (limited to 'ops/templates/category.html')
-rw-r--r-- | ops/templates/category.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ops/templates/category.html b/ops/templates/category.html new file mode 100644 index 0000000..e5e601a --- /dev/null +++ b/ops/templates/category.html @@ -0,0 +1,23 @@ +{% extends 'base.html' %} + +{% block title %} {{ SITENAME }} - {{ category }} {% endblock %} + +{% block container %} + <section id="content"> + <header class="header"> + <h2>{{ category }}</h2> + </header> + <dl> + <h3>{{ category }}</h3> + {% for article in articles|sort %} + <dd> + <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> + </dd> + {% endfor %} + </dl> + </section> +{% endblock %} + +{% block footer %} + {% include '_includes/footer.html' %} +{% endblock %}
\ No newline at end of file |