hugo-PaperMod/layouts/partials/header.html

57 lines
2.1 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="renderer" content="webkit">
<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 -->
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i" rel="stylesheet">
<link href="https://cdn.bootcss.com/highlight.js/9.12.0/styles/default.min.css" rel="stylesheet">
2018-03-13 04:58:42 +01:00
<link href="./css/style.css" rel="stylesheet">
2018-01-08 17:28:39 +01:00
<!-- Favicons -->
2018-03-13 04:58:42 +01:00
<link rel="apple-touch-icon" href="./img/apple-touch-icon.png">
<link rel="icon" href="./img/favicon.ico">
2018-01-08 17:28:39 +01:00
<!-- Generator -->
<meta name="generator" content="Hugo {{ .Hugo.Version }}">
<!-- RSS -->
2018-03-13 04:58:42 +01:00
<link rel="alternate" type="application/atom+xml" href="./index.xml" title="{{ .Site.Title }}">
2018-01-08 17:28:39 +01:00
</head>
<body class="{{if eq .Kind `page` }}single{{else}}list{{end}}">
<header class="header">
{{ if .IsHome }}
2018-03-13 04:58:42 +01:00
<h1 class="title"><a href="{{ `./` | absURL }}"><span>🍱</span>{{ .Site.Title }}</a></h1>
2018-01-08 17:28:39 +01:00
{{ else }}
2018-03-13 04:58:42 +01:00
<p class="title"><a href="{{ `./` | absURL }}"><span>🍱</span>{{ .Site.Title }}</a></p>
2018-01-08 17:28:39 +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>
2018-03-13 04:58:42 +01:00
<main class="main">