19 lines
436 B
HTML
19 lines
436 B
HTML
<footer class="footer-min">
|
|
<div class="text-muted">
|
|
{% if site.author %}
|
|
{{ site.author }}
|
|
•
|
|
{% endif %}
|
|
{% if page.date %}
|
|
{{ page.date }}
|
|
{% else %}
|
|
{{ site.time | date: '%Y' }}
|
|
{% endif %}
|
|
|
|
{% if site.url-pretty %}
|
|
•
|
|
<a href="{{ '' | absolute_url }}">{{ site.url-pretty }}</a>
|
|
{% endif %}
|
|
</div>
|
|
</footer>
|