Browse Source

fix navbar waight

tags/v1.0.0
somrat 4 years ago
parent
commit
968d4a7b06
2 changed files with 6 additions and 7 deletions
  1. 1
    1
      exampleSite/config.toml
  2. 5
    6
      layouts/partials/head.html

+ 1
- 1
exampleSite/config.toml View File

[[menu.static]] [[menu.static]]
name = "Themefisher" name = "Themefisher"
URL = "https://themefisher.com/" URL = "https://themefisher.com/"
weight = 7
weight = 8


############################# Default Parameters ########################## ############################# Default Parameters ##########################
[params] [params]

+ 5
- 6
layouts/partials/head.html View File



{{ "<!-- mobile responsive meta -->" | safeHTML }} {{ "<!-- mobile responsive meta -->" | safeHTML }}
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description"
content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
{{ with .Site.Params.author }} {{ with .Site.Params.author }}
<meta name="author" content="{{ . }}">{{ end }} <meta name="author" content="{{ . }}">{{ end }}
{{ hugo.Generator }} {{ hugo.Generator }}


{{ "<!-- plugins -->" | safeHTML }} {{ "<!-- plugins -->" | safeHTML }}
{{ range .Site.Params.plugins.css }} {{ range .Site.Params.plugins.css }}
<link rel="stylesheet" href="{{ .link | absURL }} ">
<link rel="stylesheet" href="{{ .link | absURL }}">
{{ end }} {{ end }}


{{"<!-- Main Stylesheet -->"|safeHTML}} {{"<!-- Main Stylesheet -->"|safeHTML}}
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen"> <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">


{{"<!-- Custom stylesheet - for your changes -->" |safeHTML}} {{"<!-- Custom stylesheet - for your changes -->" |safeHTML}}
<link rel="stylesheet" href="{{ `css/custom.css` | relURL}} " media="screen">
<link rel="stylesheet" href="{{ `css/custom.css` | relURL}}" media="screen">


{{ "<!--Favicon-->" | safeHTML }} {{ "<!--Favicon-->" | safeHTML }}
<link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }} " type="image/x-icon">
<link rel="icon" href="{{ `images/favicon.png` | absURL }} " type="image/x-icon">
<link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
<link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">


</head> </head>

Loading…
Cancel
Save