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

github.com/salsysd/hugo-assembly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSal Valverde <x84@sal.sh>2018-07-30 20:58:09 +0300
committerSal Valverde <x84@sal.sh>2018-07-30 20:58:09 +0300
commit649661fce5ec6b657863e9523ba8495023b111c1 (patch)
tree2590ecf3eb875187e71baf66221f326bed75defe
parent55771b1d79c295577c9590abaa4b71b507287756 (diff)
fix some shit
-rw-r--r--config.toml4
-rw-r--r--layouts/partials/menu.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/config.toml b/config.toml
index 3195348..ca6c6f2 100644
--- a/config.toml
+++ b/config.toml
@@ -20,9 +20,9 @@ title = "Assembly"
# Navigation section
[params.nav]
- home = "Welcome"
+ home = "Home"
services = "Services"
- team = "About Us"
+ welcome = "Welcome"
contact = "Contact Us"
# Services section
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html
index a9e62be..c5b153f 100644
--- a/layouts/partials/menu.html
+++ b/layouts/partials/menu.html
@@ -7,7 +7,7 @@
<li><a href="#services" accesskey="2" title="">{{ with .Site.Params.nav.services }}{{ . | markdownify }}{{ end }}</a></li>
{{ end }}
{{ if .Site.Params.welcome.enable }}
- <li><a href="#welcome" accesskey="3" title="">{{ with .Site.Params.nav.team }}{{ . | markdownify }}{{ end }}</a></li>
+ <li><a href="#welcome" accesskey="3" title="">{{ with .Site.Params.nav.welcome }}{{ . | markdownify }}{{ end }}</a></li>
{{ end }}
{{ if .Site.Params.contact.enable }}
<li><a href="#contact" accesskey="4" title="">{{ with .Site.Params.nav.contact }}{{ . | markdownify }}{{ end }}</a></li>