clean up rss feed. fix copyright. add spotify link
This commit is contained in:
parent
486736133c
commit
80596ab465
@ -2,12 +2,12 @@ baseURL = "https://gmgauthier.com/"
|
|||||||
languageCode = "en-us"
|
languageCode = "en-us"
|
||||||
|
|
||||||
title = "Greg Gauthier"
|
title = "Greg Gauthier"
|
||||||
|
copyright = "Copyright 2022. All rights reserved."
|
||||||
|
|
||||||
[author]
|
[author]
|
||||||
name = "Greg Gauthier"
|
name = "Greg Gauthier"
|
||||||
email = "gmgauthier@protonmail.com"
|
email = "gmgauthier@protonmail.com"
|
||||||
|
|
||||||
copyright = "Copyright 2022. All rights reserved."
|
|
||||||
canonifyurls = true
|
canonifyurls = true
|
||||||
paginate = 10
|
paginate = 10
|
||||||
|
|
||||||
@ -95,6 +95,7 @@ enableGitInfo = true
|
|||||||
minds = "greg_gauthier"
|
minds = "greg_gauthier"
|
||||||
gitea = "gmgauthier"
|
gitea = "gmgauthier"
|
||||||
odysee1 = "@gmgauthier:0"
|
odysee1 = "@gmgauthier:0"
|
||||||
|
spotify = "https://open.spotify.com/show/3qkV9mvW7vMu4kd6CzawQq"
|
||||||
# anchorfm = "exitingthecave"
|
# anchorfm = "exitingthecave"
|
||||||
# odysee2 = "@exitingthecave:1"
|
# odysee2 = "@exitingthecave:1"
|
||||||
# odysee3 = "@TheCaveWall:e"
|
# odysee3 = "@TheCaveWall:e"
|
||||||
|
@ -32,4 +32,5 @@
|
|||||||
{{ partial "social.html" . }}
|
{{ partial "social.html" . }}
|
||||||
|
|
||||||
{{ partial "copyright.html" . }}
|
{{ partial "copyright.html" . }}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -9,9 +9,15 @@
|
|||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .Site.Social.spotify }}
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a class="pure-menu-link" href="{{ . }}" rel="me" target="_blank"><i class="fa fa-podcast fa-fw"></i>My Spotify</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{ with .Site.Social.odysee1 }}
|
{{ with .Site.Social.odysee1 }}
|
||||||
<li class="pure-menu-item">
|
<li class="pure-menu-item">
|
||||||
<a class="pure-menu-link" href="https://odysee.com/{{ . }}" rel="me" target="_blank"><i class="fa fa-video fa-fw"></i>My Vlog</a>
|
<a class="pure-menu-link" href="https://odysee.com/{{ . }}" rel="me" target="_blank"><i class="fa fa-video fa-fw"></i>My Odysee</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
@ -15,7 +15,10 @@
|
|||||||
<channel>
|
<channel>
|
||||||
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} by {{ end }}{{ .Site.Title }}{{ end }}</title>
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} by {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||||
<link>{{ .Permalink }}</link>
|
<link>{{ .Permalink }}</link>
|
||||||
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
|
<author>{{ .Site.Author.name }}</author>
|
||||||
|
<email>{{ .Site.Author.email }}</email>
|
||||||
|
{{ with .Site.Copyright }}<copyright>{{.}}</copyright>{{end}}
|
||||||
|
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}by {{ .Site.Title }}</description>
|
||||||
<image>
|
<image>
|
||||||
<url>{{ .Site.BaseURL }}img/website-avatar-large.png</url>
|
<url>{{ .Site.BaseURL }}img/website-avatar-large.png</url>
|
||||||
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} by {{ end }}{{ .Site.Title }}{{ end }}</title>
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} by {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||||
@ -41,9 +44,6 @@
|
|||||||
{{ with .Site.LanguageCode }}<language>{{.}}</language>{{end}}
|
{{ with .Site.LanguageCode }}<language>{{.}}</language>{{end}}
|
||||||
{{ with .Site.Author.email }}<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}
|
{{ with .Site.Author.email }}<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}
|
||||||
{{ with .Site.Author.email }}<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}
|
{{ with .Site.Author.email }}<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}
|
||||||
<author>{{ .Site.Author.name }}</author>
|
|
||||||
<email>{{ .Site.Author.email }}</email>
|
|
||||||
{{ with .Site.Copyright }}<copyright>{{.}}</copyright>{{end}}
|
|
||||||
{{ if not .Date.IsZero }}<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
{{ if not .Date.IsZero }}<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
||||||
{{- with .OutputFormats.Get "RSS" -}}
|
{{- with .OutputFormats.Get "RSS" -}}
|
||||||
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
||||||
|
Loading…
Reference in New Issue
Block a user