hugo-PaperMod/layouts/partials/header.html

61 lines
2.3 KiB
HTML
Raw Normal View History

2018-01-08 17:28:39 +01:00
<!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 not .IsHome }}
{{- if eq .Kind "page" }}{{ .Title }}
{{- else if eq .Data.Singular "tag" }}{{ .Data.Term }}
{{- else }}Posts
{{- end }} - {{ end }}
{{- .Site.Title -}}
</title>
<!-- Meta -->
{{- if eq .Kind "page" }}
<meta name="description" content="{{ .Summary }}">
<meta name="author" content="{{ .Params.author | default .Site.Params.author }}">
{{ else }}
<meta name="description" content="{{ .Site.Params.description }}">
<meta name="author" content="{{ .Site.Params.author }}">
{{ end -}}
<!-- Styles -->
2018-10-31 06:42:53 +01:00
<link href="{{.Site.BaseURL}}css/font.css" rel="stylesheet">
<link href="{{.Site.BaseURL}}css/atom-one-dark.min.css" rel="stylesheet">
2018-08-15 19:22:33 +02:00
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i" rel="stylesheet">
2018-07-05 22:17:31 +02:00
<link href="{{.Site.BaseURL}}css/style.css" rel="stylesheet">
2018-01-08 17:28:39 +01:00
<!-- Favicons -->
2018-07-05 22:17:31 +02:00
<link rel="apple-touch-icon" href="{{.Site.BaseURL}}img/apple-touch-icon.png">
<link rel="icon" href="{{.Site.BaseURL}}img/favicon.ico">
2018-01-08 17:28:39 +01:00
<!-- Generator -->
{{ .Hugo.Generator }}
2018-01-08 17:28:39 +01:00
<!-- RSS -->
2018-07-05 22:17:31 +02:00
<link rel="alternate" type="application/atom+xml" href="{{.Site.BaseURL}}index.xml" title="{{ .Site.Title }}">
2018-08-06 14:14:55 +02:00
{{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
{{ template "_internal/google_analytics_async.html" . }}
{{ end }}
2019-03-24 03:05:09 +01:00
{{ partial "header-include.html" . }}
2018-01-08 17:28:39 +01:00
</head>
2018-07-05 20:45:58 +02:00
<body class="{{if eq .Kind `page` }}single{{else}}list{{ if .IsHome }} home{{ end }}{{end}}">
2018-03-13 06:46:37 +01:00
<header class="header">
{{ if .IsHome }}
2018-07-05 22:17:31 +02:00
<h1 class="title"><a href="{{.Site.BaseURL}}">{{ .Site.Title }}</a></h1>
2018-03-13 06:46:37 +01:00
{{ else }}
2018-07-05 22:17:31 +02:00
<p class="title"><a href="{{.Site.BaseURL}}">{{ .Site.Title }}</a></p>
2018-03-13 06:46:37 +01:00
{{ end }}
<button class="menu-toggle" type="button"></button>
<nav class="menu">
<ul>
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<li class="{{ if $currentPage.IsMenuCurrent `main` . }}active{{ end }}">
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</nav>
</header>
<main class="main">