aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/mypaper/layouts/partials
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-11-19 14:23:32 +0900
committernsfisis <nsfisis@gmail.com>2022-11-19 14:25:59 +0900
commit6209453817da9922f28bac1bb1522c6d380630ab (patch)
tree19e0699e751af387d549d6720ca215c8065b3c0c /themes/mypaper/layouts/partials
parent0cafa073914b5e0b162b735a7f8445fb2aa8a604 (diff)
downloadblog.nsfisis.dev-6209453817da9922f28bac1bb1522c6d380630ab.tar.gz
blog.nsfisis.dev-6209453817da9922f28bac1bb1522c6d380630ab.tar.zst
blog.nsfisis.dev-6209453817da9922f28bac1bb1522c6d380630ab.zip
Hugo to Asciidoctor
Diffstat (limited to 'themes/mypaper/layouts/partials')
-rw-r--r--themes/mypaper/layouts/partials/footer.html12
-rw-r--r--themes/mypaper/layouts/partials/header.html54
2 files changed, 0 insertions, 66 deletions
diff --git a/themes/mypaper/layouts/partials/footer.html b/themes/mypaper/layouts/partials/footer.html
deleted file mode 100644
index a7798d7..0000000
--- a/themes/mypaper/layouts/partials/footer.html
+++ /dev/null
@@ -1,12 +0,0 @@
-</main>
-<footer class="footer">
- <span>&copy; {{ now.Year }} <a href="{{ "" | absURL }}">{{ .Site.Title }}</a></span>
- <span>&middot;</span>
- <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-</footer>
-<script src="{{ "highlight.min.js" | absURL }}"></script>
-<script>
- hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
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">