Add a 404 entry, standardize more text
This commit is contained in:
parent
38d45ced44
commit
958242f4d5
5 changed files with 22 additions and 21 deletions
11
templates/blog-metadata.html
Normal file
11
templates/blog-metadata.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<strong class="subtitle">
|
||||
written: {{ page.date }}
|
||||
<br>
|
||||
authors: {%- for tag in page.taxonomies.authors | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-author" href="{{ get_taxonomy_url(kind='authors', name=tag) | safe }}">{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
<br>
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
</strong>
|
Loading…
Add table
Add a link
Reference in a new issue