Small refactoring and improved legal page and more whitespace.

This commit is contained in:
Marvin Blum
2020-06-24 14:51:19 +02:00
committed by Marvin Blum
parent 0c92f47e33
commit 4515f3d165
8 changed files with 102 additions and 68 deletions

View File

@@ -11,14 +11,14 @@
{{template "menu.html"}}
<section>
<h2>who am I?</h2>
<h2>Who Am I?</h2>
<p>
I'm a full stack software engineer from Germany, open source and Linux enthusiast and co-founder of <a href="https://emvi.com/" target="_blank">Emvi</a>.
In love with Go, but fluent in a lot of programming languages.
</p>
</section>
<section>
<h2>latest blog posts</h2>
<h2>Latest Blog Posts</h2>
{{range $article := .Articles}}
<p>
<a href="/blog/{{slug $article.LatestArticleContent.Title}}-{{$article.Id}}">{{$article.LatestArticleContent.Title}}</a>
@@ -32,11 +32,14 @@
</p>
</section>
<section>
<h2>projects</h2>
<h2>Projects</h2>
<ul>
<li>
<a href="https://emvi.com/" target="_blank">Emvi</a> a note taking, collaboration and knowledge management tool for personal use and teams of any size
</li>
<li>
<a href="https://github.com/emvi/pirsch" target="_blank">pirsch</a> a server side, no-cookie and privacy focused tracking library for Golang
</li>
<li>
<a href="https://github.com/emvi/logbuch" target="_blank">logbuch</a> a simple Golang logging library
</li>
@@ -52,7 +55,7 @@
</ul>
</section>
<section>
<h2>skills</h2>
<h2>Skills</h2>
<ul>
<li>Go (Golang)</li>
<li>JavaScript (Vue, Node)</li>
@@ -66,7 +69,7 @@
</ul>
</section>
<section>
<h2>work</h2>
<h2>Work</h2>
<ul>
<li>
<a href="https://emvi.com/" target="_blank">Emvi</a> co-founder of a note taking, collaboration and knowledge management SaaS startup

View File

@@ -3,7 +3,9 @@
<section>
<h1>Blog</h1>
{{range $year, $articles := .Articles}}
</section>
{{range $year, $articles := .Articles}}
<section>
<h2>{{$year}}</h2>
{{range $article := $articles}}
@@ -12,9 +14,11 @@
<small>{{format $article.Published "2. January 2006"}}</small>
</p>
{{end}}
{{else}}
</section>
{{else}}
<section>
<p>There are no blog posts yet...</p>
{{end}}
</section>
</section>
{{end}}
{{template "end.html"}}

View File

@@ -1,13 +1,13 @@
<hr />
<section>
<p>
Like to see more? Read my blog articles on <a href="https://emvi.com/blog" target="_blank">Emvi</a>, my project page on <a href="https://github.com/Kugelschieber" target="_blank">GitHub</a> or send me a <a href="mailto:marvin@marvinblum.de">mail</a>.
Would you like to see more? Read my blog articles on <a href="https://emvi.com/blog" target="_blank">Emvi</a>, my project page on <a href="https://github.com/Kugelschieber" target="_blank">GitHub</a> or send me a <a href="mailto:marvin@marvinblum.de">mail</a>.
</p>
<p>
This page uses <a href="https://concrete.style/" target="_blank">concrete</a> for styling. Check it out!
</p>
<p>
<a href="/legal">Legal</a>
This page does not use Cookies. <a href="/legal">Legal</a>
</p>
</section>
</body>

View File

@@ -1,6 +1,9 @@
{{template "head.html"}}
{{template "menu.html"}}
<section>
<h1>Legal</h1>
</section>
<section>
<h2>According to §5 TMG</h2>
<p>
@@ -10,5 +13,11 @@
<a href="mailto:marvin@marvinblum.de">marvin@marvinblum.de</a>
</p>
</section>
<section>
<h2>Cookie Policy</h2>
<p>
This page does not use cookies.
</p>
</section>
{{template "end.html"}}