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" image: "/img/works/gojamming.jpg"
description: "A minimalistic Go-powered JAMStack-augmented microservice for the IndieWeb." description: "A minimalistic Go-powered JAMStack-augmented microservice for the IndieWeb."
date: 2021-05-01 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" image: "/img/works/redzuurdesem-boek.jpg"
link: "https://redzuurdesem.be/het-boek/" 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" type: "writing"
date: 2020-06-01 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" image: "/img/works/redzuurdesem-site.jpg"
link: "https://redzuurdesem.be/" link: "https://redzuurdesem.be/"
description: "My Dutch bread baking blog." 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 tr
&:nth-child(odd) &:nth-child(odd)
background: lighten($dark-bg-alt, 10%) background: lighten($dark-bg-alt, 10%)
.worksgrid
.worksblock
&:hover
background-color: lighten($dark-bg, 7%)

View File

@ -3,8 +3,8 @@
display: grid display: grid
margin-bottom: 2rem margin-bottom: 2rem
grid-template-columns: repeat(auto-fill, minmax(10em, 1fr)) grid-template-columns: repeat(auto-fill, minmax(10em, 1fr))
column-gap: 1em column-gap: 0.5em
row-gap: 1.2em row-gap: 1em
* *
margin-block-start: 0.6rem margin-block-start: 0.6rem
@ -19,4 +19,13 @@
object-fit: cover object-fit: cover
p 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 'goodreads'
@import 'forms' @import 'forms'
@import 'toot' @import 'toot'
@import 'brainbaking-dark'
@import 'worksgrid' @import 'worksgrid'
@import 'brainbaking-dark'

View File

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

View File

@ -27,7 +27,7 @@
</div> </div>
<article> <article>
<h2>Software (Tartlets)</h2> <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> </article>
<div class="worksgrid"> <div class="worksgrid">
{{ range (where .Pages "Params.type" "code") }} {{ range (where .Pages "Params.type" "code") }}