diff options
-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 | 10 |
3 files changed, 11 insertions, 7 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..3fa7b39 100644 --- a/Peli-Kiera/templates/base.html +++ b/Peli-Kiera/templates/base.html @@ -6,9 +6,8 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>{% block title %}{{ SITENAME }}{% endblock title %}</title> - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css"/> - <link rel="stylesheet" - href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"/> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.css"/> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab|Ruda"/> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}"/> {% if FEED_ALL_ATOM %} @@ -31,7 +30,7 @@ {% if SOCIAL or FEED_ALL_ATOM or FEED_ALL_RSS %} <ul class="social-media"> {% for name, link in SOCIAL %} - <li><a href="{{ link }}"><i class="fa fa-{{ name }} fa-lg" aria-hidden="true"></i></a></li> + <li><a href="{{ link }}"><i class="fab fa-{{ name }} fa-lg" aria-hidden="true"></i></a></li> {% endfor %} {% if FEED_ALL_ATOM %} <li><a href="{{ FEED_DOMAIN }}/ @@ -74,7 +73,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> |