Adding dates, subtitles to Ginnie's Salads

This commit is contained in:
Neale Pickett 2023-12-24 12:47:28 -07:00
parent a69a8c068e
commit 1eccdaf317
14 changed files with 56 additions and 22 deletions

View File

@ -11,3 +11,7 @@ I help figure out what they did.
I also teach people about programming and math.
You can find more about the teaching at
<https://dirtbags.net/>.
---
Ginnie now has a [salad blog](/ginnie/)!

View File

@ -1,6 +1,5 @@
---
title: Blog
url: blog/
title: Neale's Blog
---
Blog is short for "web log".

View File

@ -1,7 +1,8 @@
---
title: ABQ Uptown
subtitle: Something From California Pizza Kitchen
date: 2021-04-02
---
Something From California Pizza Kitchen
![Salad with some sun dried tomatoes on it](image-1.png)

View File

@ -1,7 +1,8 @@
---
title: College Cafeteria
subtitle: Raw Vegetables
date: 2023-08-24
---
Raw Vegetables
![Rice and combo of raw veggies](image.png)
![Combo of raw veggies next to slice of pizza](image-2.png)

View File

@ -1,7 +1,8 @@
---
title: Cassey's Taco Salad
subtitle: How is This a Taco?
date: 2022-03-17
---
How is This a Taco?
![Lettuce with salsa and tomatoes and almonds](image.png)
![Same salad but with tofu](image-1.png)

View File

@ -1,16 +1,17 @@
---
title: COOP Salad
title: Co-Op Salad
subtitle: Radishes Give You Points
date: 2022-07-28
---
Radishes Give You Points
![Salad with falafel, cheese, radishes, tomatoes](image.png)
Steps:
1. Go to COOP
1. Go to Co-Op
2. Go to Vegetarian Kitchen section
3. Find this "Greek" salad
4. Mix it up
Review:
4/10.
Could use some work. Cheese included. Dry falafels. Okay for road trips when you can't find anything else...but, then again, you went to the COOP - why didn't you find something better while you were there?
Could use some work. Cheese included. Dry falafels. Okay for road trips when you can't find anything else...but, then again, you went to the Co-Op - why didn't you find something better while you were there?

View File

@ -1,7 +1,8 @@
---
title: Fruit
subtitle: Breaking The Rating Scale
date: 2023-05-05
---
Breaking The Rating Scale
![Bananas, blueberries, raspberries galore!](image.png)

View File

@ -1,7 +1,8 @@
---
title: Gabriel's
subtitle: My Go-To
date: 2021-08-11
---
My Go-To
![Lettuce, avocado, corn, veggies, sour cream](image-2.png)

View File

@ -1,7 +1,8 @@
---
title: Apparently in Grapevine, TX
subtitle: It Stinks!
date: 2022-07-05
---
It Stinks!
![Shredded lettuce and some corn](image.png)
![Joel from Rifftrax saying it stinks](image-2.png)

View File

@ -1,6 +1,6 @@
---
title: Ginnie's Salads
title: Ginnie Eats Salads
kind: blog
---
Ginnie makes some kick-butt salads.
Here are a few of them.
Here are a few of the salads Ginnie has eaten.

View File

@ -1,7 +1,8 @@
---
title: Xmas Eve
subtitle: Inspired by a "Greek" Salad I Kind of Liked
date: 2023-12-25
---
Inspired by a "Greek" Salad I Read About
![Spinach, tomatoes, artichokes, and olives in a bowl](image.png)

View File

@ -38,13 +38,27 @@
</head>
<body>
<h1 class="title {{if .Draft}}draft{{end}}">
{{ if eq .Kind "term" }}
{{ humanize .Type }}: {{ humanize .Title }}
<header class="{{if .Draft}}draft{{end}}">
<h1>
{{ if eq .Kind "term" }}
{{ humanize .Type }}: {{ humanize .Title }}
{{ else }}
{{ .Title }}
{{ end }}
</h1>
{{ with .Params.subtitle }}
<div class="tagline">
{{ . }}
{{ with $.Date }}
({{. | time.Format "2006-Jan-02"}})
{{ end }}
</div>
{{ else }}
{{ .Title }}
{{ with $.Date }}
<div class="tagline">{{. | time.Format "2006-Jan-02"}}</div>
{{ end }}
{{ end }}
</h1>
</header>
<main id="content">
{{ block "main" . }}{{end}}
</main>

1
layouts/ginnie Symbolic link
View File

@ -0,0 +1 @@
blog

View File

@ -28,13 +28,21 @@ input:read-only {
background-color: #eee;
}
.title, td.main {
header {
background-color: #e0e4cc;
border-radius: 0.25em;
padding: 0.1em 0.5em;
margin-top: 0;
box-shadow: 0.2em 0.2em 1em rgba(0,0,0,0.1);
}
header * {
margin: 0.2em;
}
.tagline {
font-style: italic;
margin-left: 1.5em;
}
.draft,
.draft a:any-link {
background-color: black;