-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.25 KB
/
index.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
---
layout: bright-header-default
---
<main class="content content--white">
<section class="articles">
<div class="wrapper">
{% for post in site.posts %}
<article class="article">
<a class="article__image" href="{{post.url}}">
<img src="{{ site.github.url | replace: 'http://', '//' }}/{{post.image}}" alt="{{post.title}}">
</a>
<div class="article__content">
<h3 class="article__title">
<a href="{{post.url}}">{{post.title}}</a>
</h3>
<span class="article__author">{{post.author}}</span>
<span class="article__date">{{post.date | date_to_long_string}}</span>
<div class="article__badges">
{% for tag in post.tags%}
<span class="badge badge--primary">{{tag.name}}</span>
{% endfor %}
</div>
<div class="article__resumen">
<a href="{{post.url}}">{{post.description}}</a>
</div>
</div>
</article>
{% endfor %}
</div>
</section>
</main>