blob: ec163c95b992fd9df585dadc8d736297dc7cc7f2 (
plain)
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
|
---
layout: default
---
<div class="home">
<article class="post">
<div class="post-content">
<div class="section group">
<div class="col span_1_of_2 info_section">
<h1 class="info_section__title">Ajankohtaista</h1>
{%for post in site.posts limit:5 %}
<li><a href="{{ site.baseurl}}{{ post.url }}">{{ post.date | date: "%d.%m.%Y" }} - {{ post.title }}</a></li>
{% endfor %}
<li><a href="{{ site.baseurl}}/uutiset">Lisää uutisia uutisarkistossa</a></li>
</div>
<div class="col span_1_of_2">
<div class="info_section">
<h1 class="info_section__title">Tulevat tapahtumat</h1>
Tapahtumia.
</div>
<div class="info_section">
<h1 class="info_section__title">AS? AIT? WTF?</h1>
{% include index_content.md %}
</div>
</div>
</div>
</div>
</article>
</div>
|