2016-03-17 11:01:39 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="js csstransforms3d">
|
|
|
|
<head>
|
2016-04-10 22:09:03 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
{{ .Hugo.Generator }}
|
2016-03-17 20:40:58 +00:00
|
|
|
{{ partial "meta.html" . }}
|
2016-03-28 22:35:18 +00:00
|
|
|
{{ partial "favicon.html" . }}
|
2016-03-17 20:40:58 +00:00
|
|
|
{{ .Scratch.Add "title" "" }}{{ if isset .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
|
|
|
<title>{{ .Scratch.Get "title" }}</title>
|
2016-04-10 22:09:03 +00:00
|
|
|
<link href="/css/nucleus.css" rel="stylesheet">
|
|
|
|
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
|
|
|
<link href="/css/hybrid.css" rel="stylesheet">
|
|
|
|
<link href="/css/featherlight.min.css" rel="stylesheet">
|
|
|
|
<link href="/css/perfect-scrollbar.min.css" rel="stylesheet">
|
2016-07-06 08:15:55 +00:00
|
|
|
<link href="/css/horsey.css" rel="stylesheet">
|
2016-04-10 22:09:03 +00:00
|
|
|
<link href="/css/theme.css" rel="stylesheet">
|
|
|
|
<link href="/css/hugo-theme.css" rel="stylesheet">
|
2016-07-06 08:15:55 +00:00
|
|
|
<script src="/js/jquery-2.x.min.js"></script>
|
2016-04-10 22:09:03 +00:00
|
|
|
<style type="text/css">:root #header + #content > #left > #rlblock_left
|
|
|
|
{display:none !important;}</style>
|
|
|
|
{{ partial "style.html" . }}
|
2016-03-17 11:01:39 +00:00
|
|
|
</head>
|
2016-05-23 20:18:57 +00:00
|
|
|
<body class="" data-url="{{ .RelPermalink }}">
|
2016-03-17 11:01:39 +00:00
|
|
|
{{ partial "menu.html" . }}
|
|
|
|
<section id="body">
|
|
|
|
<div id="overlay"></div>
|
|
|
|
|
|
|
|
<div class="padding highlightable">
|
2016-03-17 20:05:42 +00:00
|
|
|
|
2016-03-26 02:28:38 +00:00
|
|
|
<div id="top-bar">
|
2016-03-17 13:10:43 +00:00
|
|
|
{{ if and .IsPage .Site.Params.editURL }}
|
|
|
|
{{ $File := .File }}
|
|
|
|
{{ $Site := .Site }}
|
|
|
|
{{with $File.Path }}
|
2016-03-17 11:01:39 +00:00
|
|
|
<div id="top-github-link">
|
2016-03-17 13:10:43 +00:00
|
|
|
<a class="github-link" href="{{ $Site.Params.editURL }}{{ $File.Dir }}{{ $File.LogicalName }}" target="blank">
|
2016-03-21 15:58:15 +00:00
|
|
|
<i class="fa fa-code-fork"></i>
|
|
|
|
Edit this page
|
2016-03-17 11:01:39 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2016-03-17 13:10:43 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2016-03-17 11:01:39 +00:00
|
|
|
<div id="breadcrumbs" itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb">
|
2016-03-26 02:28:38 +00:00
|
|
|
<span id="sidebar-toggle-span">
|
|
|
|
<a href="#" id="sidebar-toggle" data-sidebar-toggle="">
|
|
|
|
<i class="fa fa-bars"></i>
|
|
|
|
</a>
|
|
|
|
</span>
|
2016-03-17 20:05:42 +00:00
|
|
|
{{ if and (not .Params.chapter) (.Params.toc) }}
|
2016-04-10 22:09:03 +00:00
|
|
|
<span id="toc-menu"><a href=""><i class="fa fa-list-alt"></i></a></span>
|
2016-03-17 20:05:42 +00:00
|
|
|
{{ end }}
|
2016-10-02 16:22:32 +00:00
|
|
|
{{ $type := .Type }}
|
|
|
|
{{ $relLink := .RelPermalink }}
|
|
|
|
{{ range $name , $value := .Site.Sections }}
|
|
|
|
{{ if eq $name $type }}
|
|
|
|
{{ $first := (index $value 0).Page }}
|
|
|
|
{{ if ne $first.RelPermalink $relLink }}
|
|
|
|
<a href="{{ $first.RelPermalink }}" itemprop="url"><span itemprop="title">{{ $first.Title }}</span></a> <i class="fa fa-angle-right"></i>
|
2016-03-17 13:10:43 +00:00
|
|
|
{{ end }}
|
2016-10-02 16:22:32 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2016-03-17 13:10:43 +00:00
|
|
|
{{ with .Title }}<span itemprop="title"> {{ . }}</span>{{ end }}
|
2016-03-17 11:01:39 +00:00
|
|
|
</div>
|
2016-03-17 20:05:42 +00:00
|
|
|
{{ if .Params.toc }}
|
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
{{ end }}
|
2016-03-17 13:10:43 +00:00
|
|
|
|
2016-03-17 11:01:39 +00:00
|
|
|
</div>
|
|
|
|
{{ if .Params.chapter }}
|
|
|
|
<div id="chapter">
|
|
|
|
{{ end }}
|
|
|
|
<div id="body-inner">
|
|
|
|
{{ if not .Params.chapter }}
|
|
|
|
<h1>{{.Title}}</h1>
|
|
|
|
{{ end }}
|