1234567891011121314151617181920212223242526 |
- {% extends "base.html" %}
- {% block title %}{{ SITENAME }} - {{ page.title }}{% endblock %}
- {% block content %}
- <section id="content" class="body">
- <h2 class="content-title">
- {{ page.title }}
- {% if page.translations %}
- <a href="{{ SITEURL }}/{{ page.url }}" class="btn btn-info xsmall">{{ page.lang or DEFAULT_LANG }}</a>
- {% for translation in page.translations %}
- <a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-info xsmall">{{ translation.lang }}</a>
- {% endfor %}
- {% endif %}
- </h2>
- {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
- the pdf</a>{% endif %}
- {{ page.content }}
- <p align="right">
- <a href="{{ page.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/src/master/')}}">✎ Editar</a> |
- <a href="{{ page.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/commits/master/')}}">⛁ Versões</a>
- </p>
- </section>
- {% endblock %}
|