-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 2 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 2 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
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
---
layout: default
priority: 0.8
---
<section id='welcome'>
<div class='container'>
<section class='wrapper'>
<header class='header'>
<h3 class='title'>Willkommen!</h3>
</header>
<section class='body'>
<p>Lieber Pythonista aus Dresden und Umgebung, </p>
<p>Wenn Dir einsames coden auch zu langweilig ist, Du Dich mit Gleichgesinnten austauschen willst,
komm doch mal auf einem unserer Treffen vorbei.
</p>
<p>Wir beschäftigen uns mit allem, was das Python-Universum zu bieten hat und freuen uns auf eine
Bereicherung durch Dich.</p>
</section>
</section>
</div>
</section>
<section id='articles'>
<div class='container'>
<section class='wrapper articles'>
<header class='header'>
<h3 class='title'>Nachrichten</h3>
</header>
<section class='body'>
{% for post in paginator.posts %}
<a href='{{site.baseurl}}{{post.url}}'>
<article class='article'>
<h4 class='title'>{{post.title}}</h4>
<span class='date'>{{ post.date | date: "%-d %B, %Y" }}</span>
</article>
</a>
{% endfor %}
<!--
<div class="pagination-flex">
{% if paginator.previous_page %}
<a href="{{ site.baseurl }}{{ paginator.previous_page_path }}" class="previous">← Previous</a>
{% else %}
<span class="previous">← Previous</span>
{% endif %}
<span class="page_number">{{ paginator.page }} / {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ site.baseurl }}{{ paginator.next_page_path }}" class="next">Next →</a>
{% else %}
<span class="next ">Next →</span>
{% endif %}
</div>
-->
</section>
</section>
</div>
</section>