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

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2019-07-16 18:01:25 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2019-07-16 18:01:25 +0300
commit95e878165c336c44d3d78957c0db1b62b0c56f94 (patch)
treef9050fc50fa9c9668c05d0db27b4456a8c03bd8a /README.md
parent1fd88a5d811371ef0d1a53f22e50b13f029bcc9a (diff)
Add option for additional content
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md
index 677f7c6..b609f1f 100644
--- a/README.md
+++ b/README.md
@@ -91,6 +91,29 @@ It is possible to use an icon from [the solid set](https://fontawesome.com/icons
url = "mailto:mail@example.org"
```
+### Additional content
+
+It's possible to add additional content to your site, for example a contact form. You can add this in `/layouts/partials/content.html`. Additional content will always be added "below the fold", ie. your introduction will always fill 100% of the height of the screen.
+
+To link to your additional information using one of the icon links, add an id to one of the tags in the content, like so:
+
+```
+<h3 id="info">Additional information</h3>
+
+<p>Lorem ipsum</p>
+```
+
+You can then add a link to this additional information in your site config, like so:
+
+```
+[params]
+ [[params.links]]
+ iconset = "fas"
+ icon = "info-circle"
+ title = "Additional information"
+ url = "#info"
+```
+
### Internationalisation (i18n)
Hallo supports using other languages than English. Language files for the texts Hallo uses are provided in the `i18n` directory. The default language is English. To switch languages, add the key `defaultContentLanguage` to your `config.toml` file. For example: