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

github.com/miguelsimoni/hugo-initio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel.Simoni <miguel.simoni@gmail.com>2021-05-08 16:01:21 +0300
committerMiguel.Simoni <miguel.simoni@gmail.com>2021-05-08 16:01:21 +0300
commita00168f52a7b5c6c9ff73d81a59fa3cee64e11f4 (patch)
tree1f6fa2a2aed0f3d6ee183c12a988ac51ba9e989f /README.md
parent94b5f41cbecd270bfe8592858242b776e70a3afa (diff)
Homologate footer parameters. Update README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 20 insertions, 9 deletions
diff --git a/README.md b/README.md
index 934a6ec..e14d61c 100644
--- a/README.md
+++ b/README.md
@@ -34,28 +34,38 @@ More info: [hugo setup guide](https://gohugo.io/overview/installing/)
## Configuration
+[Live Demo](https://miguelsimoni.github.io/hugo-initio-site/)
+
[Example Site](https://github.com/miguelsimoni/hugo-initio/tree/master/exampleSite)
[config.toml](https://github.com/miguelsimoni/hugo-initio/tree/master/exampleSite/config.toml)
### Sections
+You can show or hide each home page section from the `config.toml`:
```toml
showSubheader = true
showServices = true
showRecentWorks = true
-showDownload = true
+showDownloads = true
showClients = true
+```
+
+### Footer
-footerEnableContact = true
-footerEnableFollowme = true
-footerEnableTextWidget = false
-footerEnableFormWidget = false
+You can show or hide each footer widget from the `config.toml`:
+
+```toml
+showFooterContact = true
+showfooterFollowMe = true
+showFooterTextWidget = true
+showFooterFormWidget = true
```
-### Social Networks Icons
-You can add as many social networks as you want in the params.social array following this template:
+### Social Networks
+
+You can add as many social networks as you want in the `params.social` array following this template:
```toml
[[params.social]]
@@ -94,10 +104,11 @@ Disable the Google Analytics by leaving `params.google.analytics.trackerID` empt
In order to see your site in action, you can run Hugo's built-in local server.
```
-$ hugo server
+$ cd exampleSite
+$ hugo server -t ../..
```
-Now enter [`http://localhost:1313/hugo-initio-site/`](http://localhost:1313/hugo-initio-site/) in the address bar of your browser.
+Now enter [`http://localhost:1313/`](http://localhost:1313/) in the address bar of your browser.
## Deployment