mirror of
https://github.com/Vimux/Binario.git
synced 2024-11-11 01:38:28 +00:00
23 lines
No EOL
1.2 KiB
HTML
23 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html class="h" lang="{{ .Site.LanguageCode | default "en-us" }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="theme-color" content="#1b1b1b">
|
|
<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
|
<meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}">
|
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
|
{{ if .Site.Params.opengraph }}{{ template "_internal/opengraph.html" . }}{{ end }}
|
|
{{ if .Site.Params.twitter_cards }}{{ template "_internal/twitter_cards.html" . }}{{ end }}
|
|
<link rel="stylesheet" href="{{ "css/main.css" | relURL }}">
|
|
<link rel="icon" href="{{ "icons/16.png" | relURL }}" sizes="16x16" type="image/png">
|
|
<link rel="icon" href="{{ "icons/32.png" | relURL }}" sizes="32x32" type="image/png">
|
|
<link rel="manifest" href="{{ "manifest.json" | relURL }}">
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<a class="logo" href="/">Binario</a>
|
|
{{ partial "menu.html" . }}
|
|
</header> |