22 lines
585 B
HTML
22 lines
585 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{{ $title := print .Site.Title " | " .Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
|
<title>{{ $title }}</title>
|
|
|
|
{{ if .Site.Author.name }}
|
|
<meta name="author" content="{{ .Site.Author.name }}">
|
|
{{ end }}
|
|
{{ if .Description }}
|
|
<meta name="description" content="{{ .Description }}">
|
|
{{ end }}
|
|
<meta name="theme-color" content="#EAFEFE">
|
|
|
|
{{ $css := "css/main.css" | relURL }}
|
|
<link rel="stylesheet" href="{{ $css }}">
|
|
</head>
|