forked from Shrinks99/NatronGitHub.github.io-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
34 lines (34 loc) · 1.11 KB
/
news.html
File metadata and controls
34 lines (34 loc) · 1.11 KB
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
---
layout: default
title: Natron
---
<div class="news-container">
<div class="row">
<div class="column large-8 medium-10 small-12 large-offset-2 medium-offset-1">
<h1 class="page-title">News</h1>
</div>
</div>
<section>
{% for post in site.posts %}
<article class="row">
<div class="news-article-info column large-2 medium-2 small-12 large-offset-2 medium-offset-1">
<time><i class='bx bx-calendar' ></i> {{ post.date | date: "%B %-d, %Y" }}</time>
<small>
{% for tag in post.tags%}
<i class='bx bx-purchase-tag-alt'></i> {{tag}}
{% endfor %}
</small>
</div>
<div class="news-article-brief column large-6 medium-8 small-12">
<h2>{{ post.title }}</h2>
<h3>{{ post.author }}</h3>
<p class="basic-paragraph">
{{ post.description }}
</p>
<a class="news-link" href="{{site.baseurl}}{{post.url}}">Read more<i class='bx bx-right-arrow-alt' ></i></a>
</div>
</article>
{% endfor %}
</section>
<div class="footer-seperator"></div>
</div>