-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
31 lines (28 loc) · 1.12 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
---
layout: default
permalink: :basename
title: Blog
slug: blog
lang: en
---
<div class="flex-content">
<section class="experience section-padding">
<h3 class="post-list-heading experience-title">{{ page.list_title | default: "Posts" }}</h3>
{%- for post in site.posts -%}
{%- if post.languaje == 'english' -%}
<div class="card-b">
<a class="post-link" href="{{ post.url | relative_url }}">
<img class="card-b-img" src="{{ site.url }}/{{ post.image }}" alt="{{ post.image-alt}}">
<div class="card-b-details">
<h3 class="card-b-title">{{ post.title | escape }}</h3>
</a>
<p class="card-b-details-date">{{ post.date | date: "%B %d, %Y" }}</p>
<p>{{ post.excerpt | strip_html | truncatewords: 30}}</p>
<a href="{{ post.url }}" class="read-more-btn">Seguir leyendo...</a>
</div>
</div>
{%- endif -%}
{%- endfor -%}
</section>
{%- include profile.html -%}
</div>