aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorAriel Costas <94913521+arielcostas@users.noreply.github.com>2023-11-24 23:51:48 +0100
committerAriel Costas <94913521+arielcostas@users.noreply.github.com>2023-11-24 23:51:48 +0100
commita82f0919d535ba5d86abfbe653bad8ba0fdcf51f (patch)
tree7df1d0bc1898d52bcca159854da48524e95c548d /layouts/_default/baseof.html
parentdf5575079b87aeab1e1f14a6912ff3388f16e50a (diff)
More development
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html12
1 files changed, 9 insertions, 3 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index a4c2f56..91e6152 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,17 +1,23 @@
<!DOCTYPE html>
-<html lang="en">
+<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" . }}
- {{ block "main" . }}
- {{ end }}
+ <main>
+ {{ block "main" . }}
+ {{ end }}
+ </main>
{{ partial "partials/footer.html" . }}
</body>