-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnews.html
33 lines (26 loc) · 968 Bytes
/
news.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
---
layout: default
category: start
category_page: Information
permalink: /news
title: News
description: "Find out everything that is happening, visit the news frequently to discover the new features instantly. "
---
<div class="e-cards-mansory">
{% for post in site.posts %}
<div class="e-card profile">
<div class="e-card-cover {{post.color}} centered">
{% if post.image %}
<img src="{{site.url}}{{post.image}}" alt="{{post.title}}">
{% endif %}
</div>
<div class="card-body">
<h5 class="text-center text-gray"><a href="{{site.url}}{{post.url}}">{{post.title}}</a> <span class="e-tag static {{post.tag_color}}">{{post.tag}}</span></h5>
<p class="card-text text-center">{{ post.date | date_to_string }}</p>
<hr>
<p class="card-text">{{post.short_description}}</p>
<a href="{{site.url}}{{post.url}}" class="e-btn inverted fullwidth {{post.color}}">Read more <i class="fas fa-arrow-right"></i></a>
</div>
</div>
{% endfor %}
</div>