core/template/components/page_head.html

11 lines
426 B
HTML
Raw Permalink Normal View History

2024-10-07 19:10:04 -04:00
{{define "page_head"}}
2024-09-27 03:27:24 -04:00
<head>
2024-09-30 10:12:38 -04:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{.}} | Goffee</title>
<link rel="stylesheet" href="/public/style.css">
<link rel="icon" href="/public/img/favicon.ico" type="image/x-icon">
2024-10-07 19:10:04 -04:00
<link rel="stylesheet" href="/public/bootstrap/css/bootstrap.min.css">
2024-09-27 03:27:24 -04:00
</head>
{{end}}