35 lines
2.1 KiB
HTML
35 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .Title }}</title>
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
{{ .Hugo.Generator }}
|
|
{{ if .Site.Params.opengraph }}{{ template "_internal/opengraph.html" . }}{{ end }}
|
|
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
|
|
<link rel="dns-prefetch" href="//fonts.gstatic.com" />
|
|
{{ if .RSSLink }}<link rel="alternate" type="application/rss+xml" title="{{ .Site.Title }} Feed" href="{{ .RSSLink }}">{{ end }}
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700" type="text/css" media="all" />
|
|
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}" type="text/css" media="all" />
|
|
{{ "<!-- isso -->" | safeHTML }}
|
|
<script data-isso="{{ .Site.BaseURL }}isso/" data-isso-require-author="true" data-isso-require-email="true" src="{{ .Site.BaseURL }}isso/js/embed.min.js"></script>
|
|
{{ "<!-- end isso -->" | safeHTML }}
|
|
<script type="text/javascript" src="{{ "js/scripts.js" | relURL }}"></script>
|
|
<link rel="shortcut icon" href="{{ "favicon.ico" | relURL }}">
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
</head>
|
|
<body class="body {{ if (.Site.Params.leftsidebar) or (.Params.leftsidebar) }}body-left-sidebar{{ else }}body-right-sidebar{{ end }} mobile" itemscope="itemscope" itemtype="http://schema.org/WebPage">
|
|
<div class="container container-outer">
|
|
<header class="header" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
|
|
<div class="container container-inner clearfix">
|
|
<div class="logo" role="banner" itemscope="itemscope" itemtype="http://schema.org/Brand">
|
|
<a class="logo__link" href="{{ "" | relLangURL }}" title="{{ .Site.Title }}" rel="home">
|
|
<h1 class="logo__title">{{ .Site.Title }}</h1>
|
|
{{ with .Site.Params.subtitle }}<h2 class="logo__tagline">{{ . }}</h2>{{ end }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{{ partial "menu.html" . }}
|
|
</header>
|
|
<div class="wrapper clearfix">
|