blob: 91e615212e10f2f2cb4b404ab323b6885e51180f (
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
|
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Page.Title }} - Ariel Costas</title>
{{ $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" . }}
</body>
</html>
|