forked from eth-sri/eth-sri.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
53 lines (39 loc) · 1.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: default
title: News & Media
permalink: /news/index.html
---
<article class="page">
<header class="page-header container">
<div class="row">
<div class="column column-66">
<h1 class="page-title">{{ page.title | escape }}</h1>
</div>
</div>
</header>
<div class="page-content container">
<div class="row">
<div class="column column-66">
<ul class="post-list">
{%- for post in site.posts -%}
<li>
<div class="post-meta">{{ post.date | date: "%d.%m.%y" }}</div>
{% if post.image %}
<div class="post-image">
{% if post.link %}
<a href="{{ post.link }}">
{% endif %}
<img src="{{ post.image | prepend: '/assets/media/' | relative_url}}"/>
{% if post.link %}
</a>
{% endif %}
</div>
{% endif %}
<div class="post-content">{{ post.content}}</div>
</li>
{%- endfor -%}
</ul>
</div>
</div>
</div>
</article>