-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
42 lines (40 loc) · 1.13 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
---
layout: default
idSeccion: blog
permalink: /blog/
---
<div id="blog">
<section id="posts">
{% for post in site.posts %}
<article class="post">
<div class="post-datos">
<div class="post-dato">
<h4>Fecha</h4>
<h2>{{post.date | date: "%Y / %m /%d" }}</h2>
</div>
<div class="post-dato">
<h4>Autor</h4>
<h2>{{post.author}}</h2>
</div>
<div class="post-dato">
<h4>Categorias</h4>
<h2>{{post.categories | join: ", "}}</h2>
</div>
</div>
<div class="post-articulo">
<a href="{{post.url}}"><img src="{{post.previewImagenUrl}}" class="flexible post-imagen-preview"> </a>
<h1 class="post-titulo-preview"><a href="{{post.url}}">{{post.title}}</a></h1>
<div class="post-social movil">
<h4>Publicado por: <span>{{post.author}}</span></h4>
<h4>Fecha <span>{{post.date | date: "%Y / %m /%d" }}</span></h4>
</div>
<p class="post-preview">
{{post.excerpt}}
</p>
<a class="post-ver" href="{{post.url}}">VER POST</a>
</div>
</article>
{% endfor %}
</section>
{% include categories.html %}
</div>