blob: 9bac02c76278a26dbbbbdbccf32d3956fea6c5e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!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>
<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" }}
{{ $stylesheet := resources.Get "css/base.scss" | resources.ToCSS $stylesheetOptions | minify }}
<link rel="stylesheet" href='{{ $stylesheet.RelPermalink }}'>
</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>
|