12345678910111213141516171819202122232425 |
- {% extends "base.html" %}
- {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %}
- {% block content %}
- <div class='article'>
- <div class="content-title">
- <h1>{{ article.title }}</h1>
- {% include "metadata.html" %}
- </div>
-
- <div>{{ article.content }}</div>
- <p align="right">
- <a href="{{ article.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/src/master/')}}">✎ Editar</a> |
- <a href="{{ article.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/commits/master/')}}">⛁ Versões</a>
- </p>
-
- <hr>
- {% include "twitter.html" %}
- {% if DISQUS_SITENAME %}
- <h2>Comentários</h2>
- {% include "disqus.html" %}
- {% endif %}
- </div>
- {% endblock %}
|