git commit -a -m initial
This commit is contained in:
yv_pic
2020-12-30 12:41:09 +01:00
commit a5c7667d0a
121 changed files with 11031 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<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 }}
<link rel="icon" href={{ "img/icon.png" | absURL }}>
<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>