archetypes
content
static
themes
hugo-theme-notrack
archetypes
data
exampleSite
images
layouts
_default
partials
blog-entry-summary.html
blog-taxonomy-info.html
footer.html
head.html
header.html
pagination.html
post-category-link.html
post-tag-link.html
shortcodes
taxonomy
404.html
home.html
static
.gitignore
LICENSE.md
README.md
theme.toml
.drone.yml
.gitattributes
.gitignore
config.toml
20 lines
920 B
HTML
20 lines
920 B
HTML
|
|
<head>
|
|
<title>{{ .Site.Title }} {{ with .Title }}- {{ . }} {{ end }}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ "css/fonts.css" | absURL }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ "css/fontawesome.css" | absURL }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ "css/styles.css" | absURL }}">
|
|
{{ with resources.Get "css/userstyles.css" }}
|
|
<link rel="stylesheet" type="text/css" href="{{ .Permalink }}">
|
|
{{ end }}
|
|
{{ with .Site.Params.favicon }}
|
|
<link rel="icon" href="{{ . | absURL }}">
|
|
{{ end }}
|
|
<meta charset="UTF-8">
|
|
<meta name="author" content="{{ .Site.Params.Author }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ range .AlternativeOutputFormats -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
</head>
|