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

github.com/wowchemy/starter-academic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Cushen <gcushen@users.noreply.github.com>2020-12-13 02:51:00 +0300
committerGeorge Cushen <gcushen@users.noreply.github.com>2020-12-13 02:51:00 +0300
commit278c0cc1837cae146ff10178e36d53e749da0fea (patch)
tree5553ff9d51e0513e822757b82cb65db83fedb685 /content
parent3927a272580e5bc380a7910cbe62aa218f2a3b13 (diff)
refactor: convert Tag Cloud to TOML
Diffstat (limited to 'content')
-rw-r--r--content/home/tags.md38
1 files changed, 20 insertions, 18 deletions
diff --git a/content/home/tags.md b/content/home/tags.md
index 6da5875c..940491eb 100644
--- a/content/home/tags.md
+++ b/content/home/tags.md
@@ -1,22 +1,24 @@
-+++
-# Tag Cloud widget.
-widget = "tag_cloud" # See https://sourcethemes.com/academic/docs/page-builder/
-headless = true # This file represents a page section.
-active = true # Activate this widget? true/false
-weight = 120 # Order that this section will appear.
+---
+# An instance of the Tag Cloud widget.
+# Docs: https://wowchemy.com/docs/page-builder/
+widget: tag_cloud
-title = "Popular Topics"
-subtitle = ""
+# This file represents a page section.
+headless: true
-[content]
- # Choose the taxonomy from `config.toml` to display (e.g. tags, categories)
- taxonomy = "tags"
-
- # Choose how many tags you would like to display (0 = all tags)
- count = 20
+# Order that this section appears on the page.
+weight: 120
+
+title: Popular Topics
+subtitle: ''
-[design]
+content:
+# Choose the taxonomy from `config.toml` to display (e.g. tags, categories)
+ taxonomy: tags
+ # Choose how many tags you would like to display (0 = all tags)
+ count: 20
+design:
# Minimum and maximum font sizes (1.0 = 100%).
- font_size_min = 0.7
- font_size_max = 2.0
-+++
+ font_size_min: 0.7
+ font_size_max: 2.0
+---