diff options
author | aleylara <ingirtere@gmail.com> | 2021-01-24 23:51:34 +1100 |
---|---|---|
committer | aleylara <ingirtere@gmail.com> | 2021-01-24 23:51:34 +1100 |
commit | 736f5822e0c99801f8910f7d0d1069f23ba3503e (patch) | |
tree | f4894e10a616541fcf81901d820943302de5eec0 | |
parent | 5c03c74159000caa2b9ade477c2a898276996086 (diff) | |
download | pelican-themes-736f5822e0c99801f8910f7d0d1069f23ba3503e.tar.gz |
updated repo
-rw-r--r-- | Peli-Kiera/README.md | 4 | ||||
-rw-r--r-- | Peli-Kiera/static/css/main.css | 4 | ||||
-rw-r--r-- | Peli-Kiera/templates/base.html | 3 |
3 files changed, 8 insertions, 3 deletions
diff --git a/Peli-Kiera/README.md b/Peli-Kiera/README.md index 903ff64..1a9b6b2 100644 --- a/Peli-Kiera/README.md +++ b/Peli-Kiera/README.md @@ -1,6 +1,5 @@ # Peli-Kiera -> Tested for Pelican 4.5 and Python 3.8 Peli-Kiera is a theme for the Pelican static site generator. Thanks to the [Hugo-Kiera](https://github.com/avianto/hugo-kiera) project for the inspiration. @@ -77,11 +76,12 @@ Example `pelicanconf.py` from __future__ import unicode_literals AUTHOR = 'Author' +COPYRIGHT = '2019' SITENAME = 'Site-Name' SITEURL = '' SITESUBTITLE = Site Subtitle' PATH = 'content' -TIMEZONE = '###########/#######' +TIMEZONE = 'America/New_York' DEFAULT_LANG = 'en' THEME = 'themes/Peli-Kiera' diff --git a/Peli-Kiera/static/css/main.css b/Peli-Kiera/static/css/main.css index c79050f..571f508 100644 --- a/Peli-Kiera/static/css/main.css +++ b/Peli-Kiera/static/css/main.css @@ -123,6 +123,8 @@ time { #container p a { font-style: italic; + text-decoration: underline; + text-decoration-style: dotted; } #container main section#list ul { @@ -164,9 +166,11 @@ time { } #left-page { text-align: left; + font-weight: bold; } #right-page { text-align: right; + font-weight: bold; } #left-arrow { float: left; diff --git a/Peli-Kiera/templates/base.html b/Peli-Kiera/templates/base.html index ee680ab..7eb2213 100644 --- a/Peli-Kiera/templates/base.html +++ b/Peli-Kiera/templates/base.html @@ -74,7 +74,8 @@ <h6> Rendered by <a href="http://getpelican.com/">Pelican</a> • Theme by <a href="https://github.com/aleylara/Peli-Kiera">Peli-Kiera</a> • Copyright - © {% if AUTHOR %} ‑ {{ AUTHOR }}{% endif %} + ©{% if COPYRIGHT %}{{ COPYRIGHT }} {% endif %} + {% if AUTHOR %} ‑ {{ AUTHOR }} {% endif %} </h6> </footer> </div> |