-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
64 lines (53 loc) · 1.58 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: default
---
<div class="home">
<div class="row">
<div class="col">
<h1 class="page-heading">Informacje</h1>
<ul class="post-list">
{% for post in site.categories.info %}
<li>
<span class="post-meta">{{ post.date | date: "%d-%m-%Y" }} • {{ post.author }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
</div>
<div class="col">
<h1 class="page-heading">Zaproszeni goście</h1>
<ul class="post-list">
{% for post in site.categories.guests %}
<li>
<span class="post-meta">{{ post.date | date: "%d-%m-%Y" }} • {{ post.author }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
</div>
<div class="col">
<h1 class="page-heading">Partnerzy społecznościowi</h1>
<ul class="post-list">
{% for post in site.categories.partner %}
<li>
<span class="post-meta">{{ post.date | date: "%d-%m-%Y" }} • {{ post.author }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
</div>
</div>
<div>
<p class="rss-subscribe">Subskrybuj <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
{% if site.disqus %}
{% include disqus_comments.html %}
{% endif %}
</div>
<script id="dsq-count-scr" src="//whyr.disqus.com/count.js" async></script>
</div>