mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-11-01 07:17:47 +00:00
29 lines
951 B
HTML
29 lines
951 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Categories{% endblock %}
|
|
{% block description %}{% endblock %}
|
|
|
|
{% include 'common_seo.html' %}
|
|
|
|
{% block content %}
|
|
<div class="uk-width-medium-4-5">
|
|
<h1 class="uk-heading-large">Categories</h1>
|
|
{% for category, articles in categories %}
|
|
<h2><a href="{{ SITEURL}}/{{ category.url}}" class="uk-link-muted">{{ category|capitalize }}</a></h2>
|
|
{% for article in articles %}
|
|
|
|
<article class="uk-article">
|
|
<a href="{{ SITEURL }}/{{ article.url }}" class="uk-article-title uk-link-muted mg-list-title">{{ article.title }}</a>
|
|
<p class="uk-article-meta">
|
|
<time datetime="{{ article.date.strftime('%Y-%m-%d') }}">{{ article.locale_date }}</time>
|
|
</p>
|
|
<p>{{ ' '.join(article.content.split(' ')[0:75])|striptags }}...</p>
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
<hr>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|