39 lines
1.7 KiB
HTML
39 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
{{ hugo.Generator }}
|
|
{{ $skeletonCss := resources.Get "css/skeleton.css" | resources.Minify | resources.Fingerprint }}
|
|
{{ $customCss := resources.Get "css/custom.css" | resources.Minify | resources.Fingerprint }}
|
|
{{ $normalizeCss := resources.Get "css/normalize.css" | resources.Minify | resources.Fingerprint }}
|
|
{{ $syntaxCss := resources.Get "css/syntax.css" | resources.Minify | resources.Fingerprint }}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="//fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet" type="text/css">
|
|
|
|
<link rel="stylesheet" href="{{ $normalizeCss.Permalink }}">
|
|
<link rel="stylesheet" href="{{ $skeletonCss.Permalink }}">
|
|
<link rel="stylesheet" href="{{ $customCss.Permalink }}">
|
|
<link rel="stylesheet" href="{{ $syntaxCss.Permalink }}">
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="alternate" href="/index.xml" type="application/rss+xml" title="{{ .Site.Title }}">
|
|
|
|
<title>{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<header role="side" class="sidebar">
|
|
<div class="header-logo">
|
|
<a href="/"><img src="{{ .Site.Params.logo }}" width="60" height="60" alt="{{ .Site.Title }}"></a>
|
|
</div>
|
|
<h1 class="site-title">{{ .Site.Title }}</h1>
|
|
<h2>{{ .Site.Params.subtitle }}</h2>
|
|
<div class="navigation">
|
|
<h2><a href="/index.html">Home</a></h2>
|
|
<h2><a href="/about/index.html">About me</a></h2>
|
|
</div>
|
|
</header>
|