-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathblog.html
26 lines (24 loc) · 939 Bytes
/
blog.html
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
---
layout: default
title: Blog | GruPy Blumenau
description: Veja todos os conteúdos que a comunidade de Python de Blumenau esta produzindo.
---
<div class="section-title">
<h1><span>Blog</span></h1>
<p>Veja todos os conteúdos que o GruPy Blumenau esta produzindo.</p>
</div>
{% for category in site.categories %}
<h3 id="{{ category[0] | downcase | url_escape | strip | replace: ' ', '-' }}">{{ category[0] | camelcase }}</h3>
<ul>
{% assign pages_list = category[1] %}
{% for post in pages_list %}
{% if post.title != null %}
{% if group == null or group == post.group %}
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }} <time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></a></li>
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
</ul>
{% endfor %}