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

github.com/samrobbins85/hugo-developer-portfolio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Robbins <samrobbinsgb@gmail.com>2020-06-07 18:10:17 +0300
committerSam Robbins <samrobbinsgb@gmail.com>2020-06-07 18:10:17 +0300
commit46173c5f77bd72d2d5c9300d652e3e788607f602 (patch)
treea0737cecf89d4c566ae0265e9b51d2892677744f /layouts/partials/header.html
parentcff80cd0b48b6115a11bb86156a1d622b5e7a832 (diff)
Update homepage to work without Bootstrap
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r--layouts/partials/header.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index f4d4dd6..6a5b31b 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -7,9 +7,9 @@
<div class="uk-navbar-right">
<ul class="uk-navbar-nav uk-visible@s">
{{if .IsHome}}
- <li class="uk-active"><a style="font-size: 18px" href="/">{{ with .Site.Params.Home }} {{ . }} {{ end }}</a></li>
+ <li class="uk-active "><a style="font-size: 18px; text-transform: none" href="/">{{ with .Site.Params.Home }} {{ . }} {{ end }}</a></li>
{{else}}
- <li><a style="font-size: 18px" href="/">{{ with .Site.Params.Home }} {{ . }} {{ end }}</a></li>
+ <li><a style="font-size: 18px; text-transform: none" href="/">{{ with .Site.Params.Home }} {{ . }} {{ end }}</a></li>
{{end}}
{{ range .Site.Menus.main }}
@@ -20,9 +20,9 @@
{{$aURL3 := index $aURL2 1}}
{{$page3 := index $page2 1}}
{{if eq $aURL3 $page3}}
- <li class="uk-active"><a style="font-size: 18px" href="{{ .URL | relURL }}">{{.Name}}</a></li>
+ <li class="uk-active"><a style="font-size: 18px; text-transform:none" href="{{ .URL | relURL }}">{{.Name}}</a></li>
{{else}}
- <li><a style="font-size: 18px" href="{{ .URL | relURL }}">{{.Name}}</a></li>
+ <li><a style="font-size: 18px; text-transform: none" href="{{ .URL | relURL }}">{{.Name}}</a></li>
{{end}}
{{end}}
</ul>