brainbaking/layouts/index.html

69 lines
2.3 KiB
HTML
Raw Normal View History

{{ partial "header" . }}
<main>
2018-04-27 19:45:15 +02:00
<div class="intro">
{{ with .Site.Params.profilePic }} <img class="profile" src="{{ . }}"> {{ end }}
2018-04-27 15:17:15 +02:00
<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>
2018-04-27 15:17:15 +02:00
<blockquote class="text-justify" style="clear: both;">
<em><i class="fa fa-lightbulb-o"></i>&nbsp;<a href="/">Brain Baking</a>:</em> transforming
<span style="white-space: nowrap;">
<i class='fa fa-user'></i>&nbsp;<a href="/about">personal</a>
</span> thoughts about thoughts into
<span style="white-space: nowrap;">
<i class='fa fa-graduation-cap'></i>&nbsp;<a href="/teaching">well-digestible</a>
</span> material. The reflective aroma of burnt nervous tissue. <br/>
Includes a crispy crust of relations between
<span style="white-space: nowrap;">
<i class='fa fa-file-code-o'></i>&nbsp;<a href="/post">technology</a>
</span>,
<span style="white-space: nowrap;">
<i class='fa fa-book'></i>&nbsp;<a href="/essays">philosophy</a>
</span> and
<span style="white-space: nowrap;">
<i class='fa fa-tags'></i>&nbsp;<a href="/tags">the world</a>
</span>.
</blockquote>
<hr/>
2018-04-27 19:49:41 +02:00
<div class="freshly-baked">
2018-07-10 11:43:09 +02:00
<h3>
2018-04-27 19:49:41 +02:00
<i class="fa fa-newspaper-o"></i>&nbsp;{{ markdownify .Site.Params.Description }}:
2018-07-10 11:43:09 +02:00
</h3>
2018-04-27 15:17:15 +02:00
2018-04-27 19:49:41 +02:00
{{ range (.Paginator 1).Pages.ByDate.Reverse }}
{{ .Date.Format (.Site.Params.dateFormat | default "2 January 2006") | $.Scratch.Set "subtitle" }}
{{ with .Description }} {{ $.Scratch.Set "subtitle" . }} {{ end }}
2018-04-27 15:17:15 +02:00
2018-04-27 19:49:41 +02:00
<h4>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h4>
2020-05-15 11:30:13 +02:00
{{ .Params.subtitle }}&nbsp;&nbsp;
<span style="color: lightgrey;"><i class='fa fa-calendar'></i>&nbsp;{{ $.Scratch.Get "subtitle" }}</span>
2018-04-27 19:49:41 +02:00
{{ end }}
<hr/>
</div>
</div>
2018-04-27 15:17:15 +02:00
</main>
{{ partial "footer" . }}