bellaskeys.com/themes/agnes-hugo-theme/layouts/partials/head.html

25 lines
883 B
HTML
Raw Normal View History

2024-02-29 19:29:42 -05:00
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{ with .Site.Params }}
{{ end }}
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<title>{{ $title }}</title>
2024-02-29 23:09:23 -05:00
{{ with .Site.Params }}
<link
rel="icon"
type="image/png"
sizes="16x16 32x32"
href="{{ .Favicon }}"
/>
<meta property="og:title" content="{{ .Title }}" />
<meta property="og:description" content="{{ .Description }}" />
<meta property="og:image" content="{{ .Image }}" />
<meta property="og:url" content="{{ .BaseURL }}" />
{{ end }}
2024-02-29 19:29:42 -05:00
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
</head>