aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
deleted file mode 100644
index 7015d95..0000000
--- a/layouts/_default/baseof.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html lang="es">
-
-<head>
- <base href="{{ .Site.BaseURL }}">
-
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>{{ .Page.Title }} - Ariel Costas</title>
-
- <link rel="canonical" href="{{ .Permalink }}">
-
- <meta name="description" content="{{ .Page.Description }}">
-
- <meta property="og:title" content="{{ .Page.Title }} - Ariel Costas">
- <meta property="og:description" content="{{ .Page.Description }}">
- <meta property="og:type" content="website">
- <meta property="og:url" content="{{ .Permalink }}">
-
- {{- $stylesheetOptions := dict "transpiler" "libsass" }}
- {{ $mainStylesheet := resources.Get "css/base.scss" | resources.ToCSS $stylesheetOptions | resources.Minify | resources.Fingerprint }}
- <link rel="stylesheet" href='{{ $mainStylesheet.RelPermalink }}' integrity='{{ $mainStylesheet.Data.Integrity }}' crossorigin='anonymous'>
-
- {{ block "head_extras" . }}
- {{ end }}
-</head>
-
-<body>
- {{ partial "partials/header.html" . }}
-
- <main>
- {{ block "main" . }}
- {{ end }}
- </main>
-
- {{ partial "partials/footer.html" . }}
-
- {{ $script := resources.Get "js/navbar.js" | minify }}
- <script src='{{ $script.RelPermalink }}'></script>
-</body>
-
-</html> \ No newline at end of file