page.html 1.1 KB

1234567891011121314151617181920212223242526
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - {{ page.title }}{% endblock %}
  3. {% block content %}
  4. <section id="content" class="body">
  5. <h2 class="content-title">
  6. {{ page.title }}
  7. {% if page.translations %}
  8. <a href="{{ SITEURL }}/{{ page.url }}" class="btn btn-info xsmall">{{ page.lang or DEFAULT_LANG }}</a>
  9. {% for translation in page.translations %}
  10. <a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-info xsmall">{{ translation.lang }}</a>&nbsp;
  11. {% endfor %}
  12. {% endif %}
  13. </h2>
  14. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
  15. the pdf</a>{% endif %}
  16. {{ page.content }}
  17. <p align="right">
  18. <a href="{{ page.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/src/master/')}}">&#x270E; Editar</a> |
  19. <a href="{{ page.source_path | replace('/home/guilmour/gits/blog_libreflix/' , 'https://notabug.org/libreflix/blog_libreflix/commits/master/')}}">&#x26C1; Versões</a>
  20. </p>
  21. </section>
  22. {% endblock %}