chore: initial commit

This commit is contained in:
Jan Raasch 2020-07-07 10:37:57 +02:00
commit b05ff4eb22
86 changed files with 12051 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
<!-- We do need jQuery to be loaded before HugoScroll script -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<!-- The main JavaScript files for HugoScroll -->
<script type="text/javascript" src='{{ "/js/icons.js" | absURL }}'></script>
<script type="text/javascript" src='{{ "/js/index.js" |absURL }}'></script>
</body>
</html>

View file

View file

@ -0,0 +1,15 @@
{{ define "main" }}
<main class="content page-template page-{{ .Slug }}" role="main">
<article class="post page">
<header class="post-header">
<a id="blog-logo" href="{{ "/" | absURL }}">
{{ .Site.Title }}
</a>
</header>
<h1 class="post-title">{{ .Title }}</h1>
<section class="post-content">
{{ .Content }}
</section>
</article>
</main>
{{ end }}