-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.html
81 lines (65 loc) · 2.19 KB
/
blog.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: blog
title: Blog
canonical: blog.html
---
<header class="header">
<a href="/" class="logo" title="jr-cologne.de Logo"></a>
<nav id="nav" class="nav nav--main">
<div class="navbar">
<a href="#" id="hamburger-button" title="Navigation">
<span class="hamburger-icon_top"></span>
<span class="hamburger-icon"></span>
<span class="hamburger-icon_bottom"></span>
</a>
</div>
<ul>
<li><a href="/">Startseite</a></li>
<li><a href="blog.html" class="current">Blog</a></li>
<li><a href="resources.html">Ressourcen</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="section-heading section-heading--small">{{ page.title }}</h1>
<div class="article-previews">
{% for post in site.posts %}
<article class="article-preview article-preview--all">
<header>
<noscript clas="loaded"><img src="{{ post.image.src }}" srcset="{{ post.image.srcset }}" alt="{{ post.image.alt }}"></noscript>
<img data-src="{{ post.image.src }}" data-srcset="{{ post.image.srcset }}" alt="{{ post.image.alt }}">
<a href="{{ post.url }}" class="article-preview-overlay">
{% if post.title != 'Zentrieren mit CSS' %}<h3 class="article-preview-heading">{{ post.title }}</h3>{% endif %}
</a>
</header>
<section class="article-preview-text">
<p>
{{ post.description }}
</p>
</section>
<footer>
<time datetime="{{ post.date }}" class="date">{{ post.date_string }}</time>
<a href="{{ post.url }}" class="cta cta--read-more">Mehr lesen</a>
</footer>
</article>
{% endfor %}
</div>
</main>
<footer class="footer footer--white">
<div class="footer-logo-nav-container">
<a href="/" class="logo" title="jr-cologne.de Logo"></a>
<nav class="nav nav--footer">
<ul>
<li><a href="/">Startseite</a></li>
<li><a href="blog.html" class="current">Blog</a></li>
<li><a href="resources.html">Ressourcen</a></li>
</ul>
</nav>
</div>
<nav class="nav nav--legal">
<ul>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="datenschutz.html">Datenschutz</a></li>
</ul>
</nav>
</footer>