commit
6ea2787b11
4 changed files with 19 additions and 5 deletions
10
layouts/about/single.html
Normal file
10
layouts/about/single.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ define "header" -}}
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{ define "content" -}}
|
||||||
|
{{ partial "content_about.html" . }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{ define "footer" -}}
|
||||||
|
{{- end -}}
|
4
layouts/partials/content_about.html
Normal file
4
layouts/partials/content_about.html
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<div class="post">
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
|
@ -14,7 +14,7 @@
|
||||||
<meta content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}" property="og:title">
|
<meta content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}" property="og:title">
|
||||||
<meta content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Site.Params.meta.description }}{{ if eq $isHomePage false }} - {{ .Description }}{{ end }}" property="og:description">
|
<meta content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Site.Params.meta.description }}{{ if eq $isHomePage false }} - {{ .Description }}{{ end }}" property="og:description">
|
||||||
{{ "<!-- CSS -->" | safeHTML }}
|
{{ "<!-- CSS -->" | safeHTML }}
|
||||||
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,400i|Roboto+Mono:300,300i,400,400i" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Noto+Serif:300,300i,400,400i,700,700i|Source+Code+Pro:300,300i,400,400i" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print">
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print">
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
html,
|
html,
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
font-family: 'Fira Sans', sans-serif;
|
font-family: 'Noto Serif', serif;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
line-height: 1.5;
|
line-height: 1.66em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.img-circle
|
.img-circle
|
||||||
|
@ -61,8 +61,8 @@ pre code, li code, td code, code
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-family: 'Roboto Mono', monospace;
|
font-family: 'Source Code Pro', monospace;
|
||||||
font-size: 90%;
|
font-size: 82%;
|
||||||
}
|
}
|
||||||
.copyright,
|
.copyright,
|
||||||
.poweredby
|
.poweredby
|
||||||
|
|
Loading…
Reference in a new issue