Initialized jekyll with cyberpunk theme
This commit is contained in:
13
_layouts/default.html
Normal file
13
_layouts/default.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
{% include head.html %}
|
||||
</head>
|
||||
<body>
|
||||
{% include header.html %}
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
{% include footer.html %}
|
||||
</body>
|
||||
</html>
|
||||
13
_layouts/home.html
Normal file
13
_layouts/home.html
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% for post in site.posts %}
|
||||
<article>
|
||||
<h1 class="cyber-h" style="margin-bottom: 0;"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h1>
|
||||
<p style="margin-top: 0;"><small>{{ post.date | date: "%d.%m.%Y" }}</small></p>
|
||||
<p>{{ post.excerpt }}</p>
|
||||
<a href="{{ post.url | relative_url }}">Weiterlesen...</a>
|
||||
</article>
|
||||
<hr>
|
||||
{% endfor %}
|
||||
6
_layouts/page.html
Normal file
6
_layouts/page.html
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<h1 class="cyber-h">{{ page.title }}</h1>
|
||||
{{ content }}
|
||||
9
_layouts/post.html
Normal file
9
_layouts/post.html
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<article class="cyber-tile-big bg-dark" style="display: flex; flex-direction: column; margin: 0 auto;">
|
||||
<h1 class="cyber-h">{{ page.title }}</h1>
|
||||
<p><strong>Datum:</strong> <span class="cyber-glitch-4">{{ page.date | date: "%d.%m.%Y" }}</span></p>
|
||||
{{ content }}
|
||||
</article>
|
||||
Reference in New Issue
Block a user