File tree Expand file tree Collapse file tree 8 files changed +48
-7
lines changed Expand file tree Collapse file tree 8 files changed +48
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ enableRobotsTXT: false
2424assetDir : static
2525
2626# Enable .GitInfo object for each page. This will give values to .Lastmod etc.
27- enableGitInfo : false
27+ enableGitInfo : true
2828
2929# Top Level Language defaults
3030# See languages.yaml for language specific values
@@ -45,6 +45,13 @@ outputs:
4545 section :
4646 - HTML
4747
48+ frontmatter :
49+ date :
50+ - date
51+ - pubdate
52+ - :git
53+ - :default
54+
4855# Code Highlighting configuration
4956# Not Used. Code highlighting is controlled using the highlighting
5057# section in `markup.yaml`
Original file line number Diff line number Diff line change @@ -79,6 +79,10 @@ links:
7979 url : " https://bsky.app/profile/interlisp.org"
8080 icon : " fa-brands fa-bluesky"
8181 desc : " We're on Bluesky too!"
82+ - name : " RSS Feed"
83+ url : " project/status/index.xml"
84+ icon : " fa fa-rss"
85+ desc : " Subscribe to our feed for the latest updates"
8286# - name: "Stack Overflow"
8387# url: "https://stackoverflow.com/questions/tagged/graphviz"
8488# icon: "fab fa-stack-overflow"
Original file line number Diff line number Diff line change 22Title : The Medley Interlisp Project
33weight : 2
44type : docs
5- outputs :
6- - html
7- - rss
85aliases :
96 - /hugo/
107 - /medley/project/
Original file line number Diff line number Diff line change 22title : News and Status Reports
33type : docs
44weight : 2
5+ outputs :
6+ - html
7+ - rss
58aliases :
69 - /hugo/news/
710 - /medley/project/news/
Original file line number Diff line number Diff line change 11---
22title : Software
33type : docs
4- outputs :
5- - html
6- - rss
74aliases :
85
96---
Original file line number Diff line number Diff line change 1212{{- $pctx := . }}
1313{{- if .IsHome }}{{ $pctx = .Site }}{{ end }}
1414
15+ <!-- Iterate through all sections and include both sections and
16+ pages in the rss feed. The default rss.xml only includes
17+ pages. -->
1518{{- $pages := slice }}
1619{{- $mainPages := where .Pages "Kind" "in" (slice "page" "section") }}
1720{{- $pages = $pages | union $mainPages }}
Original file line number Diff line number Diff line change 1+ < ul class ="td-footer__links-list ">
2+ {{ range . }}
3+ {{ if eq .name "RSS Feed" }}
4+ < li class ="td-footer__links-item " data-bs-toggle ="tooltip " title ="RSS " aria-label ="RSS ">
5+ < a target ="_blank " rel ="noopener " href ="{{ absURL .url }} " aria-label ="RSS ">
6+ < i class ="fas fa-rss "> </ i >
7+ </ a >
8+ </ li >
9+ {{ else }}
10+ < li class ="td-footer__links-item " data-bs-toggle ="tooltip " title ="{{ .name }} " aria-label ="{{ .name }} ">
11+ < a target ="_blank " rel ="noopener " href ="{{ .url }} " aria-label ="{{ .name }} ">
12+ < i class ="{{ .icon }} "> </ i >
13+ </ a >
14+ {{ end }}
15+ {{ end }}
16+
17+ </ ul >
Original file line number Diff line number Diff line change 1+ {{ if and .GitInfo .Site.Params.github_repo -}}
2+ < div class ="td-page-meta__lastmod ">
3+ <!--
4+ Disable showing of Git Commit info in the footer
5+ {{ T "post_last_mod" }} {{ .Lastmod.Format .Site.Params.time_format_default -}}
6+ {{ with .GitInfo }}: {{/* Trim WS */ -}}
7+ <a data-proofer-ignore href="{{ $.Site.Params.github_repo }}/commit/{{ .Hash }}">
8+ {{- .Subject }} ({{ .AbbreviatedHash }}) {{- /* Trim WS */ -}}
9+ </a>
10+ {{- end }}
11+ -->
12+ </ div >
13+ {{ end -}}
You can’t perform that action at this time.
0 commit comments