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

github.com/shenoybr/hugo-goa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Warnke <sw-github@sebwarnke.com>2021-09-29 21:21:32 +0300
committerGitHub <noreply@github.com>2021-09-29 21:21:32 +0300
commit147297f004f6493aa9c3d767d3bdcbda3e2f2410 (patch)
tree2cfe41e8095addacf840ecce8384cb31aff9e34e
parentb5813c90fb38e748731a82a9059868b08729d9f5 (diff)
Fix wrong Stylesheet Import (#99)
* fix wrong css import * fix wrong css import * prevent main menu from lowercase-ify
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/main_menu.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 3a6e408..00c72ef 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -23,7 +23,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/{{ .Site.Params.extra.highlightjsstyle | default "default" }}.min.css">
{{ end }}
-<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400&family=Roboto+Slab:400,700&family=Roboto:300,300i,400,400i,500,500i,700,700i">
+<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400|Roboto+Slab:400,700|Roboto:300,300i,400,400i,500,500i,700,700i">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="{{ "css/main.css" | absURL }}">
diff --git a/layouts/partials/main_menu.html b/layouts/partials/main_menu.html
index 3258080..abe79b6 100644
--- a/layouts/partials/main_menu.html
+++ b/layouts/partials/main_menu.html
@@ -1,7 +1,7 @@
{{ with .Site.Menus.main }}
<section id="main-menu-pane" class="text-center main-menu">
{{ range sort . }}
- <h4><a class="menu-item" href="{{ .URL }}">{{ .Name | lower }}</a></h4>
+ <h4><a class="menu-item" href="{{ .URL }}">{{ .Name }}</a></h4>
{{ end }}
</section>
{{ end }} \ No newline at end of file