forked from hshackers/nyc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
reviews.html
45 lines (44 loc) · 1.61 KB
/
reviews.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: Resenhas
caption: Por Leitores
subtitle: Convidados analisam livros e outras obras disponibilizadas pelo site
icon: lecture
background: "#F15823"
permalink: /reviews/
navigation: visible
---
<div class="meetups">
<div class="blog">
{% for review in site.categories.review %}
<a class="post-link white-box" href="{{ review.url | prepend: site.baseurl }}">
<div class="preview" style="background:{{ review.background }}">
<div class="date">
<small>
{% assign m = review.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>
{{ review.date | date: "%-d" }}
</div>
</div>
<h3>{{ review.title }}</h3>
<p>{{ review.summary }}</p>
</a>
<br>
{% endfor %}
</div>
</div>
<p>Quer publicar uma resenha de livro no nosso site? Por favor mande email para <a href="mailto:[email protected]">[email protected]</a>.</p>