Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/bake/solar-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4766d1b63ea3977c766257b4b1217ddfa4b60ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>

<head>
	<meta charset="utf-8">
	<title>{{ .Title }}</title>
	<meta name="viewport" content="width=device-width">
	{{ with .OutputFormats.Get "RSS" }}
		<link href="{{ .RelPermalink }}" rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" />
		<link href="{{ .RelPermalink }}" rel="feed" type="application/rss+xml" title="{{ $.Site.Title }}" />
	{{ end }}
	<link rel="stylesheet" href="{{ .Site.BaseURL }}css/hybrid.css">
	<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
	<link rel="stylesheet" href="{{ .Site.BaseURL }}css/colors-{{ .Site.Params.scheme | default "dark" }}.css">

	{{ partial "head.html" . }}
</head>

<body>
	<header id="header">
		<h1><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>
		<p>{{ .Site.Params.Description }}</p>
	</header>

	<div id="page">
		<div id="sidebar">
			{{ partial "navigation.html" . }}
		</div>

		<div id="content">