lugo/layouts/partials/header.html

15 lines
663 B
HTML
Raw Normal View History

2022-04-14 20:07:48 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
<head>
2022-05-09 02:37:00 +00:00
<title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
2022-04-14 20:07:48 +00:00
<meta charset="utf-8"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel='stylesheet' type='text/css' href='/style.css'>
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-06-23 22:49:29 +00:00
<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
2022-04-14 20:07:48 +00:00
<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/rss.xml'>
</head>
<body>
{{ partial "nav.html" . }}
<main>