article.html 871 B

12345678910111213141516171819202122232425
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %}
  3. {% block content %}
  4. <div class='article'>
  5. <div class="content-title">
  6. <h1>{{ article.title }}</h1>
  7. {% include "metadata.html" %}
  8. </div>
  9. <div>{{ article.content }}</div>
  10. <p align="right">
  11. <a href="{{ article.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/src/master/')}}">&#x270E; Editar</a> |
  12. <a href="{{ article.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/commits/master/')}}">&#x26C1; Versões</a>
  13. </p>
  14. <hr>
  15. {% include "twitter.html" %}
  16. {% if DISQUS_SITENAME %}
  17. <h2>Comentários</h2>
  18. {% include "disqus.html" %}
  19. {% endif %}
  20. </div>
  21. {% endblock %}