-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 2.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: null
title: "Augsburg D&D"
sitemap:
priority: 1.0
lastmod: 2017-03-30
changefreq: weekly
---
<!DOCTYPE HTML>
<!--
Massively by HTML5 UP
html5up.net | @ajlkn
Jekyll integration by somiibo.com
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
{% include head.html %}
</head>
<body class="is-loading">
<!-- Wrapper -->
<div id="wrapper" class="fade-in">
<!-- Intro -->
<div id="intro">
<h1>{{site.introtitle}}</h1>
<p>{{ site.description }}</p>
<ul class="actions">
<li><a href="#header" class="fas fa-arrow-down fa-4x scrolly"></a></li>
</ul>
</div>
<!-- Header -->
<header id="header">
<a href="{{ "#" | absolute_url }}" class="logo">{{site.title}}</a>
</header>
<!-- Nav -->
<nav id="nav">
{% include nav.html %}
</nav>
<!-- Main -->
<div id="main">
<!-- Featured Post -->
{% for post in site.tags.Frontpage limit: 1 %}
<article class="post featured">
<header class="major">
{% include de_date.html %}
<h2><a href="{{ post.url | absolute_url }}">{{ post.title }}</h2>
</header>
<a href="{{ post.url | absolute_url }}" class="image featured">
<img data-src="{{ post.image | absolute_url }}" alt="" class="lazyload" />
</a>
<p class="center-justified">{{ post.excerpt }}</p>
<ul class="actions">
<li><a href="{{ post.url | absolute_url }}" class="button">Hier lesen</a></li>
{% if post.homebrewerylink %}
<li>
<a href="{{ post.homebrewerylink | absolute_url }}" class="button">D&D Style</a>
</li>
{% endif %}
</ul>
</article>
{% endfor %}
<!-- Posts -->
<section class="posts">
{% include frontpage_posts.html %}
</section>
<hr class="footer-divider" >
<!-- Footer -->
{% include foot.html %}
</div>
<!-- Scripts -->
{% include scripts-main.html %}
</body>
</html>