From 2d7874b7a58861ebc452374ad22013c5d200f1f9 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 1 Dec 2024 19:23:46 -0600 Subject: Add recipe content --- layouts/_default/rss.xml | 41 +++++++++++++++++++++++++++++++++++++++++ layouts/recipe/single.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ static/css/common.css | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 120 insertions(+) create mode 100644 layouts/_default/rss.xml create mode 100644 layouts/recipe/single.html diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml new file mode 100644 index 0000000..202e844 --- /dev/null +++ b/layouts/_default/rss.xml @@ -0,0 +1,41 @@ +{{- $pctx := . -}} +{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}} +{{- $pages := slice -}} +{{- if or $.IsHome $.IsSection -}} +{{- $pages = $pctx.RegularPages -}} +{{- else -}} +{{- $pages = $pctx.Pages -}} +{{- end -}} +{{- $limit := .Site.Config.Services.RSS.Limit -}} +{{- if ge $limit 1 -}} +{{- $pages = $pages | first $limit -}} +{{- end -}} +{{- printf "" | safeHTML }} + + + {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Hugo -- gohugo.io{{ with .Site.LanguageCode }} + {{.}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} + {{.}}{{end}}{{ if not .Date.IsZero }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} + {{- with .OutputFormats.Get "RSS" -}} + {{ printf "" .Permalink .MediaType | safeHTML }} + {{- end -}} + {{ range $pages }} + {{if compare.Eq .Section "blog"}} + + {{ .Title }} + {{ .Permalink }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} + {{ .Permalink }} + {{ .Summary | html }} + + {{ end }} + {{ end }} + + \ No newline at end of file diff --git a/layouts/recipe/single.html b/layouts/recipe/single.html new file mode 100644 index 0000000..fb88d7f --- /dev/null +++ b/layouts/recipe/single.html @@ -0,0 +1,46 @@ +{{ define "head" }} + + +{{ end }} + +{{ define "main" }} +{{- $data := transform.Unmarshal .RawContent -}} +
+ +

{{ .Title }}

+
+
+
{{ .PublishDate.Format "January 2, 2006"}}
+

{{- $data.description -}}

+ +
+
+

Ingredients

+
    + {{- range $data.recipeIngredient -}} +
  • + + +
  • + {{ end }} +
+
+ +
+

Instructions

+
    + {{- range $data.recipeInstructions -}} +
  1. + + +
  2. + {{ end }} +
+
+
+ +
+
+{{ end }} diff --git a/static/css/common.css b/static/css/common.css index 2782a83..c2b28e7 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -288,4 +288,37 @@ li.post p { #header > h1 a { text-decoration: none; color: inherit; +} + +.recipe .body { + display: flex; + justify-content: space-between; +} + +.recipe .body .ingredients { + width: 35%; +} + +.recipe .body .instructions { + width: 60%; +} + +.recipe ol input[type="checkbox"] { + display: none; +} + +/* Style for the list items */ +.recipe ul li { + list-style-type: none; + margin: 5px 0; +} + +/* Strike-through effect when the checkbox is checked */ +.recipe input[type="checkbox"]:checked + label { + text-decoration: line-through; +} + +/* Style the label to look like a clickable list item */ +.recipe label { + cursor: pointer; } \ No newline at end of file -- cgit v1.2.3