diff options
author | Case Duckworth | 2022-07-17 23:44:20 -0500 |
---|---|---|
committer | Case Duckworth | 2022-07-17 23:44:20 -0500 |
commit | 76f1b6d4b7134367378082a707e3fc248dd4c919 (patch) | |
tree | 4ca74c4a99e7289500a4ee87433de7e222602e35 | |
parent | Archive feeds older than 60 days (diff) | |
download | sfeed-76f1b6d4b7134367378082a707e3fc248dd4c919.tar.gz sfeed-76f1b6d4b7134367378082a707e3fc248dd4c919.zip |
Add footer
-rwxr-xr-x | sfeed_html.sh | 4 | ||||
-rw-r--r-- | style.css | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sfeed_html.sh b/sfeed_html.sh index 58fce30..910323d 100755 --- a/sfeed_html.sh +++ b/sfeed_html.sh | |||
@@ -30,6 +30,10 @@ Planet ACDW</h1> | |||
30 | $(html_main "$@") | 30 | $(html_main "$@") |
31 | <aside><ul>$(cat "$aside")</ul></aside> | 31 | <aside><ul>$(cat "$aside")</ul></aside> |
32 | </main> | 32 | </main> |
33 | <footer> | ||
34 | Generated by <a href="https://codemadness.org/sfeed-simple-feed-parser.html">sfeed</a> | ||
35 | using <a href="https://git.acdw.net/sfeed/">this configuration</a>. | ||
36 | </footer> | ||
33 | </body> | 37 | </body> |
34 | </html> | 38 | </html> |
35 | EOF | 39 | EOF |
diff --git a/style.css b/style.css index 0fa9d6b..4462446 100644 --- a/style.css +++ b/style.css | |||
@@ -174,3 +174,9 @@ header a { display: inline; } | |||
174 | aside { border-bottom: 1px solid black; } | 174 | aside { border-bottom: 1px solid black; } |
175 | aside li { background: white !important; } | 175 | aside li { background: white !important; } |
176 | } | 176 | } |
177 | |||
178 | footer { | ||
179 | font-size: 80%; | ||
180 | font-style: italic; | ||
181 | text-align: right; | ||
182 | } | ||