Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@gmail.com>2020-05-15 08:41:46 +0300
committerDarshan Baral <darshanbaral@gmail.com>2020-05-15 08:41:46 +0300
commitd17c84023a1fdbcc2196022bb767fd1a9d97910b (patch)
tree145674c7903764956b4ab0e362677a66e7df54f7
parent023580d28ff0fbf7d877130c17249130b3888872 (diff)
Decreased base font size
-rw-r--r--exampleSite/config.toml2
-rw-r--r--layouts/partials/footer.html8
2 files changed, 5 insertions, 5 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 818a7e6..c79fab9 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -16,7 +16,7 @@ theme = "ghazal"
profileImage = "https://i.stack.imgur.com/oI2SB.jpg?s=328&g=1"
[params.theme]
- fontSize = "20px"
+ fontSize = "16px"
dateFormat = "2006/01/02"
paginateNum = 5
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 626293c..89456c2 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -72,7 +72,7 @@
box-sizing: border-box;
"
>
- <h3>Sections</h3>
+ <h3>Site Sections</h3>
<ul style="padding: 0;">
{{ range .Site.Sections }}
<li style="list-style: none;">
@@ -93,13 +93,13 @@
"
>
<h3>Recent Posts</h3>
- <ul style="padding: 0;">
+ <ol style="padding: 0;">
{{ range ((where .Site.Pages "Kind" "page").ByDate.Reverse) | first 5 }}
- <li style="list-style: none;">
+ <li>
<a href="{{ .Permalink }}">{{ .Title | truncate 25 }}</a>
</li>
{{ end }}
- </ul>
+ </ol>
</div>
</div>
<hr style="width: 50%; border-color: var(--textColor);" />