summaryrefslogtreecommitdiffstatshomepage
path: root/templates/macros.html
blob: dc621f911e54749d9ddb3da5a86dae4be917cd2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% macro render_post(post, class="feed") -%}
<article class="{{ class }}">
	<header>
		<img class="avatar" alt="{{ config.extra.author }}" src="{{ config.extra.avatar }}" width="64" />
		<div class="banner smaller">
			<div class="info">
				<a class="bold-hover" title="permalink to this post" href="{{ post.permalink }}">{% if class == "related" %}№ {{ post.slug }} {% else %}§{% endif %}</a>
				<time class="mute" datetime="{{ post.date }}" title="{{ post.date }}">{{ post.date | date(format="%F") }}</time>
				<h2 class="mute title">{{ post.title }}</h2>
			</div>
			{%- if "tags" in post.taxonomies %}
			<nav class="tags">
				<ul class="inline">{{ self::render_tags(tags=post.taxonomies.tags) }}</ul>
			</nav>
			{%- endif %}
		</div>
	</header>
	<section class="post">{{ post.content | safe }}</section>
</article>
{%- endmacro render_post -%}

{%- macro render_pagination(paginator) %}
{%- if paginator.number_pagers > 1 %}
<nav class="pagination">
	{%- if paginator.previous %}
	<a class="newer" href="{{ paginator.previous }}">‹ newer</a>
	{%- endif %}
	{%- if paginator.next %}
	<a class="older" href="{{ paginator.next }}">older ›</a>
	{%- endif %}
</nav>
{%- endif %}
{%- endmacro render_pagination -%}

{%- macro render_tags(tags) %}
{%- for tag in tags %}
	<li><a class="tag" href="{{ get_taxonomy_url(kind="tags", name=tag) }}">{{ tag }}</a></li>
{%- endfor %}
{%- endmacro render_tags %}