mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
63 lines
2.3 KiB
HTML
63 lines
2.3 KiB
HTML
<!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 -->
|
|
<link href="{{ "css/github-gist.min.css" | absURL }}" rel="stylesheet">
|
|
<link href="{{ "css/style.css" | absURL }}" rel="stylesheet">
|
|
<!-- Favicons -->
|
|
<link rel="apple-touch-icon" href="{{ "img/apple-touch-icon.png" | absURL }}">
|
|
<link rel="icon" href="{{ "img/favicon.ico" | absURL }}">
|
|
<!-- Generator -->
|
|
{{ hugo.Generator }}
|
|
<!-- RSS -->
|
|
<link rel="alternate" type="application/atom+xml" href="{{ "index.xml" | absURL }}" title="{{ .Site.Title }}">
|
|
{{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
{{ end }}
|
|
{{ partial "header-include.html" . }}
|
|
</head>
|
|
<body class="{{if eq .Kind `page` }}single{{else}}list{{ if .IsHome }} home{{ end }}{{end}}">
|
|
<header class="header">
|
|
<div class="wrap">
|
|
{{ 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 (isset .Site.Menus "main") }}
|
|
<button class="menu-toggle" type="button"></button>
|
|
{{ end }}
|
|
</div>
|
|
</header>
|
|
<nav class="nav">
|
|
<ul class="menu">
|
|
{{ $currentPage := . }}
|
|
{{ range .Site.Menus.main }}
|
|
<li class="{{ if $currentPage.IsMenuCurrent `main` . }}active{{ end }}">
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
<main class="main">
|