blob: bc13ba1a8a41070752b85943b62b96e7ca7a2ebe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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 %}
<section id="home" class="body">
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
</section>
<section id="home" class="body" style="color: background: #CC0000;">
<div style="background: #CC0000;">
<h2>Blog</h2>
</div>
<ol id="content" class="container" style="background: #CC0000;">
{% for article in articles[:4] %}
<li><article class="features">
<header> <h4><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h4> </header>
<footer>
<time class="published" datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }} </time>
<address class="vcard author">By
{% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}
</address>
</footer><!-- /.post-info -->
<p> {{ article.summary }} </p><!-- /.entry-content -->
</article></li>
{% endfor %}
</ol><!-- /#posts-list -->
<div style="background: #CC0000; text-align: center; padding-bottom: 15px;">
<a href="/category/blog.html"><button class="button"><b>Leia mais...</b></button></a>
</div>
</section>
{% endblock %}
|