brainbaking/layouts/index.html

73 lines
2.8 KiB
HTML

{{ partial "header" . }}
<main>
<div class="intro">
{{ with .Site.Params.profilePic }} <img class="profile" src="{{ . }}"> {{ end }}
<h1 style="color: #555">
<span style="float: left;">Brain</span>
<div class="avatar-container" style="float: left;">
<div class="avatar-img-border">
<a title="{{ .Site.Title }}" href="{{ .Site.BaseURL }}">
<img class="avatar-img" src="/img/avatar-icon.png" alt="{{ .Site.Title }}" />
</a>
</div>
</div>
<span style="float: left;">Baking</span>
</h1>
<blockquote class="text-justify" style="clear: both;">
<em><svg class='icon icon-float'><use xlink:href='#bulb'></use></svg><a href="/">Brain Baking</a>:</em>&nbsp;transforming&nbsp;
<span style="white-space: nowrap;">
<svg class='icon icon-float'><use xlink:href='#about'></use></svg><a href="/about">personal</a>&nbsp;
</span> thoughts about thoughts into&nbsp;
<span style="white-space: nowrap;">
<svg class='icon icon-float'><use xlink:href='#teaching'></use></svg><a href="/teaching">well-digestible</a>
</span> material. The reflective aroma of burnt nervous tissue.
Includes a crispy crust of relations between &nbsp;
<span style="white-space: nowrap;">
<svg class='icon icon-float'><use xlink:href='#tech'></use></svg><a href="/post">technology</a>
</span>,&nbsp;
<span style="white-space: nowrap;">
<svg class='icon icon-float'><use xlink:href='#book'></use></svg><a href="/essays">philosophy</a>
</span>&nbsp;and&nbsp;
<span style="white-space: nowrap;">
<svg class='icon icon-float'><use xlink:href='#tag'></use></svg><a href="/tags">the world</a>
</span>.
</blockquote>
<hr/>
<div class="freshly-baked">
<h3>
<svg class='icon'><use xlink:href='#news'></use></svg>{{ markdownify .Site.Params.Description }}:
</h3>
{{ range (.Paginator 1).Pages.ByDate.Reverse }}
{{ .Date.Format (.Site.Params.dateFormat | default "2 January 2006") | $.Scratch.Set "subtitle" }}
{{ with .Description }} {{ $.Scratch.Set "subtitle" . }} {{ end }}
<h4>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h4>
{{ .Params.subtitle }}&nbsp;&nbsp;
<span style="color: lightgrey;"><svg class='icon icon-text'><use xlink:href='#cal1'></use></svg> {{ $.Scratch.Get "subtitle" }}</span>
{{ end }}
</div>
</div>
</main>
<footer style="position: fixed; bottom: 0; width: 100%">
<p class="copyright text-muted">{{ .Site.Params.copyright | default "&copy; All rights reserved. Powered by [Hugo](https://gohugo.io) and [Minimal](https://github.com/calintat/minimal)" | markdownify }}</p>
</footer>
</body>
</html>