forked from hshackers/nyc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
45 lines (44 loc) · 1.59 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: page
title: Notícias
caption: Novidades
subtitle: Acompanhe o progresso do projeto, envolva-se e apoie esta iniciativa!
icon: newspaper
background: "rgb(119, 40, 23)"
permalink: /blog/
navigation: visible
---
<div class="meetups">
<div class="blog">
{% for post in site.categories.blog %}
<a class="post-link white-box" href="{{ post.url | prepend: site.baseurl }}">
<div class="preview" style="background:{{ post.background }}">
<div class="date">
<small>
{% assign m = post.date | date: "%-m" %}
{% case m %}
{% when '1' %}Janeiro
{% when '2' %}Fevereiro
{% when '3' %}Março
{% when '4' %}Abril
{% when '5' %}Maio
{% when '6' %}Junho
{% when '7' %}Julho
{% when '8' %}Agosto
{% when '9' %}Setembro
{% when '10' %}Outubro
{% when '11' %}Novembro
{% when '12' %}Dezembro
{% endcase %}
</small>
{{ post.date | date: "%-d" }}
</div>
</div>
<h3>{{ post.title }}</h3>
<p>{{ post.summary }}</p>
</a>
<br>
{% endfor %}
</div>
</div>
<p>Quer publicar alguma notícia no nosso site? Por favor mande email para <a href="mailto:[email protected]">[email protected]</a>.</p>