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" . }}
|
2017-03-25 17:14:50 +00:00
|
|
|
{{ .Scratch.Add "title" "" }}{{ if eq .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
2016-03-17 20:40:58 +00:00
|
|
|
<title>{{ .Scratch.Get "title" }}</title>
|
2016-12-19 23:04:24 +00:00
|
|
|
<link href="{{ .Site.BaseURL }}/css/nucleus.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/font-awesome.min.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/hybrid.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/featherlight.min.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/perfect-scrollbar.min.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/horsey.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/theme.css" rel="stylesheet">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/hugo-theme.css" rel="stylesheet">
|
|
|
|
<script src="{{ .Site.BaseURL }}/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 }}">
|
2017-03-27 19:57:49 +00:00
|
|
|
{{ $isChapter := .Params.chapter | default (eq .Kind "section")}}
|
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">
|
2017-01-05 21:59:15 +00:00
|
|
|
<a class="github-link" href="{{ $Site.Params.editURL }}{{ replace $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>
|
2017-03-13 23:10:33 +00:00
|
|
|
{{ if and (not $isChapter) (.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 }}
|
2017-03-27 20:37:46 +00:00
|
|
|
{{ if ne $.Section "" }}
|
|
|
|
{{ $section := index $.Site.Sections $.Section }}
|
|
|
|
{{ $sectionPage := $.Site.GetPage "section" $.Section }}
|
|
|
|
{{ if $sectionPage.Content }}
|
|
|
|
{{ $first := $.Site.GetPage "section" $.Section }}
|
|
|
|
{{ if ne $first.UniqueID $.UniqueID }}
|
|
|
|
<a href="{{ $first.RelPermalink }}" itemprop="url"><span itemprop="title">{{ $first.Title }}</span></a> <i class="fa fa-angle-right"></i>
|
|
|
|
{{ end }}
|
|
|
|
{{ else if gt $section.Len 0 }}
|
|
|
|
{{ $first := (index $section 0).Page }}
|
|
|
|
{{ if ne $first.UniqueID $.UniqueID }}
|
|
|
|
<a href="{{ $first.RelPermalink }}" itemprop="url"><span itemprop="title">{{ $first.Title }}</span></a> <i class="fa fa-angle-right"></i>
|
|
|
|
{{ 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>
|
2017-03-13 23:10:33 +00:00
|
|
|
{{ if $isChapter }}
|
2016-03-17 11:01:39 +00:00
|
|
|
<div id="chapter">
|
|
|
|
{{ end }}
|
2017-03-13 22:07:40 +00:00
|
|
|
<div id="body-inner">
|
2017-03-13 23:10:33 +00:00
|
|
|
{{ if not $isChapter }}
|
2016-03-17 11:01:39 +00:00
|
|
|
<h1>{{.Title}}</h1>
|
|
|
|
{{ end }}
|