Skip to content
Snippets Groups Projects
Select Git revision
  • ec562adf83e6618e2e2d057789d66cf2fcaa8381
  • master default protected
2 results

categories.html

Blame
  • categories.html 446 B
    {% extends "base.html" %}
    
    {% block title %}{{ SITENAME }} - Categories{% endblock %}
    
    {% block content %}
        <main>
    	    <section id="list">
    		    <h2>Number of Articles for Category </h2>
    		        <ul>
                    {% for category, articles in categories|sort %}
    					<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
    				{% endfor %}
    		        </ul>
    	    </section>
        </main>
    {% endblock %}