13 lines
623 B
HTML
13 lines
623 B
HTML
<head>
|
|
{{ $title := print .Title " | " .Site.Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<link rel="stylesheet" type="text/css" href="/css/bulma.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/fontawesome-free-6.1.2-web/css/all.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
<link rel="shortcut icon" href="/images/photo.jpg">
|
|
<title>{{ $title }}</title>
|
|
</head>
|