diff options
Diffstat (limited to 'themes/mypaper/layouts/partials/header.html')
| -rw-r--r-- | themes/mypaper/layouts/partials/header.html | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/themes/mypaper/layouts/partials/header.html b/themes/mypaper/layouts/partials/header.html deleted file mode 100644 index 830acd5..0000000 --- a/themes/mypaper/layouts/partials/header.html +++ /dev/null @@ -1,54 +0,0 @@ -<!DOCTYPE html> -<html lang="{{ .Site.LanguageCode }}"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - <!-- Title --> - <title>{{ if .Title }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title> - <!-- Meta --> - {{- if eq .Kind "page" }} - <meta name="description" content="{{ .Summary }}"> - <meta name="author" content="{{ .Params.Author | default .Site.Author.name }}"> - {{- else }} - <meta name="description" content="{{ .Site.Params.description }}"> - <meta name="author" content="{{ .Site.Author.name }}"> - {{- end }} - <!-- Styles --> - <link href="{{ "an-old-hope.min.css" | absURL }}" rel="stylesheet"> - <link href="{{ "style.css" | absURL }}" rel="stylesheet"> - <link href="{{ "custom.css" | absURL }}" rel="stylesheet"> - <!-- Favicons --> - <link rel="icon" href="{{ "favicon.svg" | absURL }}"> - <!-- Generator --> - {{- hugo.Generator }} - <!-- RSS --> - {{ range .AlternativeOutputFormats -}} - {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} - {{ end -}} - <!-- Misc --> - {{- if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }} - {{- template "_internal/google_analytics_async.html" . }} - {{- template "_internal/opengraph.html" . }} - {{- end }} - </head> - <body class="{{ if eq .Kind `page` }}single{{ else }}list{{ if .IsHome }} home{{ end }}{{ end }}"> - <header class="header"> - <nav class="nav"> - {{- if .IsHome }} - <h1 class="logo"><a href="{{ "" | absURL }}">{{ .Site.Title }}</a></h1> - {{- else }} - <p class="logo"><a href="{{ "" | absURL }}">{{ .Site.Title }}</a></p> - {{- end }} - {{- if .Site.Menus.main }} - <ul class="menu"> - {{- range .Site.Menus.main }} - <li> - <a href="{{ .URL }}">{{ .Name }}</a> - </li> - {{- end }} - </ul> - {{- end }} - </nav> - </header> - <main class="main"> |
