Skip to content

Commit 32631c8

Browse files
committed
Criada pagina de eventos/agenda
1 parent 08696d6 commit 32631c8

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ pages:
2727
url: /eventos
2828
- title: Sobre GDG
2929
url: /sobre
30+
- title: Sobre GDG
31+
url: /sobre
3032

3133
exclude: ['package.json', '_src', 'node_modules', 'vendor/bundle/ruby']

eventos.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: minimal
3+
title: "Eventos"
4+
permalink: /eventos/index.html
5+
description: "Agenda GDG Salvador"
6+
---
7+
8+
<div class="home">
9+
<div class="row">
10+
{% for post in site.posts %}
11+
<div class="col s12 m6">
12+
<div class="card blue-grey darken-1">
13+
<div class="card-content white-text">
14+
<span class="card-title yellow-text">{{ post.title }}</span>
15+
<p>{{ post.description }}</p>
16+
</div>
17+
<div class="card-action">
18+
<a href="#">Compartilhar no Twitter</a>
19+
<a href="#">Inscrições</a>
20+
</div>
21+
</div>
22+
</div>
23+
{% endfor %}
24+
</div>
25+
</div>

0 commit comments

Comments
 (0)