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

github.com/your-identity/hugo-theme-dimension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Sail <andrew@andrewsail.com>2021-05-20 06:23:43 +0300
committerAndrew Sail <andrew@andrewsail.com>2021-05-20 06:23:43 +0300
commit503e7566c9a9c115e1efc96dd5a306aff876d035 (patch)
tree743bdd33d5de8c0266f0ec02717aee9828727c8e
parentcb5ebeeb4f1b577adc7aa27421f8cff1cac4c7c1 (diff)
fix verbiage
-rw-r--r--README.md15
1 files changed, 13 insertions, 2 deletions
diff --git a/README.md b/README.md
index aa4547e..21440a4 100644
--- a/README.md
+++ b/README.md
@@ -73,7 +73,8 @@ Given the following repo structure:
│ └── elements.md
├── static
│ └── images
- │ └── custom_bg.jpg
+ │ ├── custom_bg.jpg
+ │ └── custom_logo.svg
└── archetypes
└── default.md
```
@@ -84,6 +85,7 @@ Given the following repo structure:
title: Your Name
description: A great human
background: "images/custom_bg.jpg"
+ logo: "images/custom_logo.svg"
---
```
@@ -93,10 +95,19 @@ Given the following repo structure:
title: Posts
description: A great human's posts
background: "../images/custom_bg.jpg"
+ logo: "../images/custom_logo.svg"
+ ---
+```
+
+Both fields may also be a URL to an online asset, such as:
+```yaml
+ ---
+ title: Posts
+ description: A great human's posts
+ logo: "https://upload.wikimedia.org/wikipedia/commons/8/8e/Font_Awesome_5_regular_gem.svg"
---
```
-Follow the same conventions as demonstrated above for `logo`.
## How to run your site
From your Hugo root directory run: