mirror of
https://github.com/Brandon-Rozek/website.git
synced 2026-05-13 18:08:27 +00:00
Compare commits
3 commits
5b094969e9
...
35b36510f8
| Author | SHA1 | Date | |
|---|---|---|---|
| 35b36510f8 | |||
| 551303275a | |||
| 4383e71b92 |
5 changed files with 12 additions and 46 deletions
|
|
@ -64,7 +64,7 @@ The following menu contains meals that are in rotation at my home. These are mad
|
||||||
- Pre-made Indian Curries
|
- Pre-made Indian Curries
|
||||||
* Tikka Marsala
|
* Tikka Marsala
|
||||||
- Pre-made Japanese Vermont curry
|
- Pre-made Japanese Vermont curry
|
||||||
- [Fettuccine Alfredo](fettuccine-alfredo/)
|
- [Alfredo](alfredo/)
|
||||||
- Pad Thai
|
- Pad Thai
|
||||||
- [White Pepper Spaetzle](white-pepper-spaetzle/)
|
- [White Pepper Spaetzle](white-pepper-spaetzle/)
|
||||||
- [Korma](korma/)
|
- [Korma](korma/)
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ description: Ways to subscribe to Brandon Rozek
|
||||||
---
|
---
|
||||||
|
|
||||||
- [Blog Posts](/blog/index.xml)
|
- [Blog Posts](/blog/index.xml)
|
||||||
|
- [Postroll](/postroll/index.xml)
|
||||||
- Mastodon
|
- Mastodon
|
||||||
- [Follow directly](https://fosstodon.org/users/brozek/remote_follow)
|
- [Follow directly](https://fosstodon.org/users/brozek/remote_follow)
|
||||||
- [Via RSS](/toots/index.xml)
|
- [Via RSS](/toots/index.xml)
|
||||||
|
|
|
||||||
9
layouts/partials/rss-item/postroll.xml
Normal file
9
layouts/partials/rss-item/postroll.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<item>
|
||||||
|
<title>Postroll: {{ .Title }}</title>
|
||||||
|
<link>{{ with .Params.url }}{{ . }}{{ else }}{{ .Permalink }}{{ end }}</link>
|
||||||
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||||
|
<author>{{ .Params.author }}</author>
|
||||||
|
<guid>{{ with .Params.url }}{{ . }}{{ else }}{{ .Permalink }}{{ end }}</guid>
|
||||||
|
{{ printf `<description><![CDATA[<p><strong>Brandon's Comment:</strong></p>%s]]></description>` .Summary | safeHTML }}
|
||||||
|
{{ printf `<content:encoded><![CDATA[<p><strong>Brandon's Comment:</strong></p>%s]]></content:encoded>` .Content | safeHTML }}
|
||||||
|
</item>
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
{{- $pctx := . -}}
|
|
||||||
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
|
|
||||||
{{- $pages := $pctx.RegularPages -}}
|
|
||||||
{{- $limit := .Site.Config.Services.RSS.Limit -}}
|
|
||||||
{{- if ge $limit 1 -}}
|
|
||||||
{{- $pages = $pages | first $limit -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
|
||||||
{{- $style := resources.Get "css/pretty-feed-v3.xsl" -}}
|
|
||||||
{{- printf "<?xml-stylesheet href=%q type=\"text/xsl\"?>" $style.Permalink | safeHTML }}
|
|
||||||
<rss version="2.0"
|
|
||||||
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
||||||
xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
|
||||||
<channel>
|
|
||||||
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} | {{ end }}{{ .Site.Title }}{{ end }}</title>
|
|
||||||
<link>{{ .Permalink }}</link>
|
|
||||||
<image>
|
|
||||||
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} | {{ end }}{{ .Site.Title }}{{ end }}</title>
|
|
||||||
<link>{{ .Permalink }}</link>
|
|
||||||
<url>{{ .Site.BaseURL }}img/{{ .Site.Params.avatar }}</url>
|
|
||||||
</image>
|
|
||||||
<description>{{ .Description }}</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
|
||||||
<language>{{.}}</language>{{end}}{{ with .Site.Params.email }}
|
|
||||||
<managingEditor>{{.}}{{ with $.Site.Params.Author }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Params.email }}
|
|
||||||
<webMaster>{{.}}{{ with $.Site.Params.Author }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
|
|
||||||
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
|
|
||||||
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
|
||||||
{{ with .OutputFormats.Get "RSS" }}
|
|
||||||
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
|
||||||
{{ end }}
|
|
||||||
{{ range $pages }}
|
|
||||||
<item>
|
|
||||||
<title>{{ .Title }}</title>
|
|
||||||
<link>{{ .Params.url }}</link>
|
|
||||||
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
|
||||||
<author>{{ .Params.author }}</author>
|
|
||||||
<guid>{{ .Params.url }}</guid>
|
|
||||||
{{ printf `<description><![CDATA[<p><strong>Brandon's Comment:</strong></p>%s]]></description>` .Summary | safeHTML }}
|
|
||||||
{{ printf `<content:encoded><![CDATA[<p><strong>Brandon's Comment:</strong></p>%s]]></content:encoded>` .Content | safeHTML }}
|
|
||||||
</item>
|
|
||||||
{{ end }}
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 6f8ae91e561aff2b707774a820490112c6be8ad9
|
Subproject commit 47c3dcfc5dd69860f008024c16fa5118a8dfbbad
|
||||||
Loading…
Add table
Add a link
Reference in a new issue