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>
|
2024-03-01 14:34:27 -05:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
2024-02-29 19:29:42 -05:00
|
|
|
</head>
|