brain baking works - fooled around even more

This commit is contained in:
Wouter Groeneveld 2022-10-12 09:39:24 +02:00
parent 79233c9808
commit 95af019385
10 changed files with 41 additions and 31 deletions

View File

@ -1,8 +0,0 @@
---
title: "The Stone Dragon"
image: "/img/works/destenendraak.jpg"
description: "A NaNoWriMo novel inspired by popular fantasy in Dutch."
link: "https://www.lulu.com/shop/wouter-groeneveld/de-stenen-draak/hardcover/product-1epmvz6d.html?q=wouter+groeneveld&page=1&pageSize=4"
type: "writing"
date: 2011-12-01
---

View File

@ -1,5 +1,5 @@
---
title: Go-jamming
title: Go-Jamming
image: "/img/works/gojamming.jpg"
description: "A minimalistic Go-powered JAMStack-augmented microservice for the IndieWeb."
date: 2021-05-01

View File

@ -1,8 +1,8 @@
---
title: "Save Sourdough: The Book"
title: "Save Sourdough (The Book)"
image: "/img/works/redzuurdesem-boek.jpg"
link: "https://redzuurdesem.be/het-boek/"
description: "My personal quest for the taste and science of bread, written in Dutch."
description: "A personal quest for the taste and science of bread, written in Dutch."
type: "writing"
date: 2020-06-01
---

View File

@ -1,5 +1,5 @@
---
title: "Save Sourdough: The Website"
title: "Save Sourdough (The Blog)"
image: "/img/works/redzuurdesem-site.jpg"
link: "https://redzuurdesem.be/"
description: "My Dutch bread baking blog."

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

View File

@ -88,3 +88,9 @@ $dark-fg: #dddddd
tr
&:nth-child(odd)
background: lighten($dark-bg-alt, 10%)
.worksgrid
.worksblock
&:hover
background-color: lighten($dark-bg, 7%)

View File

@ -3,8 +3,8 @@
display: grid
margin-bottom: 2rem
grid-template-columns: repeat(auto-fill, minmax(10em, 1fr))
column-gap: 1em
row-gap: 1.2em
column-gap: 0.5em
row-gap: 1em
*
margin-block-start: 0.6rem
@ -19,4 +19,13 @@
object-fit: cover
p
margin: 0
margin: 0 !important
.worksblock
border-radius: 10px
&:hover
background-color: darken(white, 5%)
.icon
width: 20px !important
height: 20px !important

View File

@ -22,5 +22,6 @@ $belowsingle: rgba(243, 243, 243, 0.8)
@import 'goodreads'
@import 'forms'
@import 'toot'
@import 'brainbaking-dark'
@import 'worksgrid'
@import 'brainbaking-dark'

View File

@ -9,19 +9,21 @@
</a>
<h4><a href="{{ $link }}" class="name">{{ .Title }}</a></h4>
<div>
<span class="stamp">
<svg class='icon icon-text'>
<title>published icon</title>
<use xlink:href='#cal1'></use>
</svg>
{{ $date := now }}
{{ if isset .Params "date" }}
{{ $date = .Params.Date }}
{{ end }}
<time datetime='{{ $date.Format "2006-01-02" }}' class="date" title="Created Date">~ {{ $date.Format "January 2006" }}</time>
</span>
<p>
{{ .Params.description }}<br/>
</p>
<small>
<span class="stamp">
<svg class='icon icon-text'>
<title>published icon</title>
<use xlink:href='#cal1'></use>
</svg>
{{ $date := now }}
{{ if isset .Params "date" }}
{{ $date = .Params.Date }}
{{ end }}
<time datetime='{{ $date.Format "2006-01-02" }}' class="date" title="Created Date">~ {{ $date.Format "January 2006" }}</time>
</span>
<p>
{{ .Params.description }}<br/>
</p>
</small>
</div>
</article>

View File

@ -27,7 +27,7 @@
</div>
<article>
<h2>Software (Tartlets)</h2>
For those interested in smaller but technical buns of baked goodness, have fun exploring my open source projects at <a href="https://git.brainbaking.com/">https://git.brainbaking.com/</a>.
For those interested in smaller but technical buns of baked goodness, have fun exploring my open source projects at <a href="https://git.brainbaking.com/">https://git.brainbaking.com/</a> or my contributions at <a href="{{ .Site.Author.githublink }}">GitHub</a>.
</article>
<div class="worksgrid">
{{ range (where .Pages "Params.type" "code") }}