diff options
| author | Ariel Costas <94913521+arielcostas@users.noreply.github.com> | 2023-12-03 20:40:20 +0100 |
|---|---|---|
| committer | Ariel Costas <94913521+arielcostas@users.noreply.github.com> | 2023-12-03 20:40:20 +0100 |
| commit | 809f8858a6dc00d65e97c4b40fc3227bb346914e (patch) | |
| tree | 14b416fd0e3c9001f9db8298895858ad263ee9ba /layouts/_default | |
| parent | 49e70b2b275c46b4c581657e035dbbbbffd4afea (diff) | |
Add OpenGraph
Diffstat (limited to 'layouts/_default')
| -rw-r--r-- | layouts/_default/baseof.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 91e6152..115b754 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -2,10 +2,19 @@ <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 }}'> |
