summaryrefslogtreecommitdiff
path: root/themes/m10c/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/m10c/layouts/_default/baseof.html')
-rw-r--r--themes/m10c/layouts/_default/baseof.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/themes/m10c/layouts/_default/baseof.html b/themes/m10c/layouts/_default/baseof.html
deleted file mode 100644
index 071d891..0000000
--- a/themes/m10c/layouts/_default/baseof.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!doctype html>
-<html lang="{{ .Site.LanguageCode | default "en-us" }}">
- <head>
- <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} // {{ .Site.Title }}{{ end }}</title>
- <meta charset="utf-8" />
- {{ hugo.Generator }}
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta name="author" content="{{ .Site.Params.author | default "John Doe" }}" />
- <meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" />
- {{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint -}}
- <link rel="stylesheet" href="{{ $style.Permalink }}" />
- <link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
- <script src="https://kit.fontawesome.com/0460fae059.js" crossorigin="anonymous"></script>
-
- {{ template "_internal/google_analytics.html" . }}
- {{ template "_internal/twitter_cards.html" . }}
- {{ template "_internal/opengraph.html" . }}
-
- </head>
- <body>
- <header class="app-header">
- <a href="{{ .Site.BaseURL }}"><img class="app-header-avatar" src="{{ .Site.Params.avatar | default "avatar.jpg" | relURL }}" alt="{{ .Site.Params.author | default "John Doe" }}" /></a>
- <h1>{{ .Site.Title }}</h1>
- <p>venezuelan πŸ‡»πŸ‡ͺ living in montevideo πŸ‡ΊπŸ‡Ύ</p>
- <p>{{ .Site.Params.description | default "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vehicula turpis sit amet elit pretium." }}</p>
- <div class="app-header-social">
- {{ range .Site.Params.social }}
- <a target="_blank" href="{{ .url }}" rel="noreferrer noopener"><i class="{{ .name }}"></i></a>
- {{ end }}
- </div>
- <p>donations:</p>
- <div class="app-header-social">
- {{ range .Site.Params.donations }}
- <a target="_blank" href="{{ .url }}" rel="noreferrer noopener"><i class="{{ .name }}"></i></a>
- {{ end }}
- </div>
- </header>
- <main class="app-container">
- {{ block "main" . }}
- {{ .Content }}
- {{ end }}
- </main>
- </body>
-</html>