From a0190a6ce6cdba78bb67b23c0233de0f32bd39f3 Mon Sep 17 00:00:00 2001 From: "Núbio C. Hott" Date: Mon, 27 Apr 2026 21:43:40 -0300 Subject: Início do repositório MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- themes/nojs/templates/home.html~ | 50 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 themes/nojs/templates/home.html~ (limited to 'themes/nojs/templates/home.html~') diff --git a/themes/nojs/templates/home.html~ b/themes/nojs/templates/home.html~ new file mode 100644 index 0000000..bc13ba1 --- /dev/null +++ b/themes/nojs/templates/home.html~ @@ -0,0 +1,50 @@ +{% extends "base.html" %} +{% block html_lang %}{{ page.lang }}{% endblock %} + +{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%} + +{% block head %} + {{ super() }} + + {% import 'translations.html' as translations with context %} + {% if translations.entry_hreflang(page) %} + {{ translations.entry_hreflang(page) }} + {% endif %} +{% endblock %} + +{% block content %} +
+ {% import 'translations.html' as translations with context %} + {{ translations.translations_for(page) }} + + {{ page.content }} + +
+ +
+
+

Blog

+
+
    + {% for article in articles[:4] %} +
  1. +

    {{ article.title }}

    +
    + +
    By + {% for author in article.authors %} + {{ author }} + {% endfor %} +
    +
    +

    {{ article.summary }}

    +
  2. + {% endfor %} +
+
+ +
+
+ +{% endblock %} + -- cgit v1.2.3