footer-minimal.html 436 B

123456789101112131415161718
  1. <footer class="footer-min">
  2. <div class="text-muted">
  3. {% if site.author %}
  4. {{ site.author }}
  5. &nbsp;&nbsp;&bull;&nbsp;&nbsp;
  6. {% endif %}
  7. {% if page.date %}
  8. {{ page.date }}
  9. {% else %}
  10. {{ site.time | date: '%Y' }}
  11. {% endif %}
  12. {% if site.url-pretty %}
  13. &nbsp;&nbsp;&bull;&nbsp;&nbsp;
  14. <a href="{{ '' | absolute_url }}">{{ site.url-pretty }}</a>
  15. {% endif %}
  16. </div>
  17. </footer>