Remove some unnecessary spacing
This commit is contained in:
@@ -4,14 +4,12 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>{{ if not .IsHome }}{{ .Title }} · {{ end }}{{ .Site.Title }}</title>
|
||||
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
|
||||
<!-- Standard favicon -->
|
||||
{{ if (fileExists "static/img/favicon.ico") -}}
|
||||
<link rel="icon" type="image/x-icon" href="{{ "img/favicon.ico" | absURL}}">
|
||||
{{- end }}
|
||||
<!-- Recommended favicon format -->
|
||||
<link rel="icon" type="image/x-icon" href="{{ "img/favicon.ico" | absURL}}">
|
||||
{{ end -}}
|
||||
{{ if (fileExists "static/img/favicon.png") -}}
|
||||
<link rel="icon" type="image/png" href="{{ "img/favicon.png" | absURL}}">
|
||||
{{- end }}
|
||||
<link rel="icon" type="image/png" href="{{ "img/favicon.png" | absURL}}">
|
||||
{{ end -}}
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.10.0/dist/katex.min.css" integrity="sha384-9eLZqc9ds8eNjO3TmqPeYcDj8n+Qfa4nuSiGYa6DjLNcv9BtN69ZIulL9+8CqC9Y" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="{{ "css/main.min.css" | absURL}}" />
|
||||
@@ -19,11 +17,11 @@
|
||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||
{{ end -}}
|
||||
{{ template "_internal/google_analytics.html" . }}
|
||||
{{ if isset $.Site.Params "bgimg" }}
|
||||
{{ if isset $.Site.Params "bgimg" -}}
|
||||
<style>
|
||||
body {
|
||||
background: #ecedef url("{{ $.Site.Params.bgimg | absURL | safeCSS }}") repeat;
|
||||
}
|
||||
</style>
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
</head>
|
||||
@@ -1,10 +1,10 @@
|
||||
<nav class="nav-bar side-padding">
|
||||
<h1 class="nav-header"><a href="{{ .Site.BaseURL }}" class="nav-text">
|
||||
{{ if isset $.Site.Params "brand"}}
|
||||
{{- if isset $.Site.Params "brand"}}
|
||||
{{- $.Site.Params.brand -}}
|
||||
{{ else }}
|
||||
{{- $.Site.Title -}}
|
||||
{{ end }}
|
||||
{{ end -}}
|
||||
</a></h1>
|
||||
<div class="hamburger-menu">
|
||||
<button onclick="hamburgerMenuPressed.call(this)" aria-haspopup="true" aria-expanded="false" aria-controls="menu" aria-label="Menu">
|
||||
@@ -13,12 +13,12 @@
|
||||
</button>
|
||||
<ul id="menu" class="hamburger-menu-overlay">
|
||||
<li><a href="{{ .Site.BaseURL }}" class="hamburger-menu-overlay-link">Home</a></li>
|
||||
{{ range where .Site.Pages "Params.displayinmenu" true }}
|
||||
<li><a href="{{ .Permalink }}" class="hamburger-menu-overlay-link">{{ .Title }}</a></li>
|
||||
{{ end }}
|
||||
{{ range $key, $value := .Site.Taxonomies.categories }}
|
||||
{{ range where .Site.Pages "Params.displayinmenu" true -}}
|
||||
<li><a href="{{ .Permalink }}" class="hamburger-menu-overlay-link">{{ .Title }}</a></li>
|
||||
{{ end -}}
|
||||
{{ range $key, $value := .Site.Taxonomies.categories -}}
|
||||
<li><a href="{{ (printf "%s%s" "categories/" ($key | urlize)) | absURL }}" class="hamburger-menu-overlay-link">{{ $key | humanize }}</a></li>
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user