Add some better logic to the resizing, add a better contacts page. sidebar hiding still in the works
This commit is contained in:
parent
d8893f0463
commit
67de08a5b8
19 changed files with 180 additions and 99 deletions
15
templates/blog-entry.html
Normal file
15
templates/blog-entry.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<li class="postlist-item">
|
||||
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
||||
<br>
|
||||
{{ page.description }}
|
||||
<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>
|
||||
written: {{ page.date }}
|
||||
<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 -%}
|
||||
</li>
|
Loading…
Add table
Add a link
Reference in a new issue