This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/themes/hacksite/layouts/partials/head.html
2022-09-22 08:13:37 -04:00

10 lines
No EOL
546 B
HTML

<head>
<title>{{ .Site.Title }}</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/fontawesome/css/all.css"/>
<link rel="shortcut icon" type="image/x-icon" href="{{ .Site.BaseURL }}/favicon.ico"/>
{{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
</head>