Adding dates, subtitles to Ginnie's Salads
Homepage / publish (push) Successful in 1m26s
Details
Homepage / publish (push) Successful in 1m26s
Details
This commit is contained in:
parent
620ab72150
commit
c28eefdf54
|
@ -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/)!
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
title: Blog
|
||||
url: blog/
|
||||
title: Neale's Blog
|
||||
---
|
||||
|
||||
Blog is short for "web log".
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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?
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 744 KiB After Width: | Height: | Size: 744 KiB |
Before Width: | Height: | Size: 17 MiB After Width: | Height: | Size: 17 MiB |
|
@ -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)
|
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
blog
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue