custom color support
This commit is contained in:
parent
55dd9ba312
commit
3548ed0d3a
18
README.md
18
README.md
|
@ -132,8 +132,8 @@ title = "Hugo Zzo Theme"
|
||||||
theme = "zzo"
|
theme = "zzo"
|
||||||
|
|
||||||
defaultContentLanguage = "en"
|
defaultContentLanguage = "en"
|
||||||
defaultContentLanguageInSubdir = false
|
defaultContentLanguageInSubdir = true
|
||||||
hasCJKLanguage = false
|
hasCJKLanguage = true
|
||||||
|
|
||||||
summaryLength = 70
|
summaryLength = 70
|
||||||
|
|
||||||
|
@ -177,19 +177,19 @@ You shoud make your own menu.
|
||||||
identifier = "about"
|
identifier = "about"
|
||||||
name = "about"
|
name = "about"
|
||||||
url = "about"
|
url = "about"
|
||||||
weight = 0
|
weight = 1
|
||||||
|
|
||||||
[[main]]
|
[[main]]
|
||||||
identifier = "archive"
|
identifier = "archive"
|
||||||
name = "archive"
|
name = "archive"
|
||||||
url = "archive"
|
url = "archive"
|
||||||
weight = 1
|
weight = 2
|
||||||
|
|
||||||
[[main]]
|
[[main]]
|
||||||
identifier = "gallery"
|
identifier = "gallery"
|
||||||
name = "gallery"
|
name = "gallery"
|
||||||
url = "gallery"
|
url = "gallery"
|
||||||
weight = 2
|
weight = 3
|
||||||
|
|
||||||
[[main]]
|
[[main]]
|
||||||
parent = "gallery"
|
parent = "gallery"
|
||||||
|
@ -205,13 +205,13 @@ You shoud make your own menu.
|
||||||
identifier = "posts"
|
identifier = "posts"
|
||||||
name = "posts"
|
name = "posts"
|
||||||
url = "posts"
|
url = "posts"
|
||||||
weight = 3
|
weight = 4
|
||||||
|
|
||||||
[[main]]
|
[[main]]
|
||||||
identifier = "notes"
|
identifier = "notes"
|
||||||
name = "notes"
|
name = "notes"
|
||||||
url = "notes"
|
url = "notes"
|
||||||
weight = 4
|
weight = 5
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -219,7 +219,9 @@ You shoud make your own menu.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
description = "The Zzo theme for Hugo example site."
|
description = "The Zzo theme for Hugo example site."
|
||||||
custom_css = ["css/foo.css", "css/bar.css"]
|
custom_css = ["css/custom.css", "css/custom.css"]
|
||||||
|
custom_js = ["js/custom.js"]
|
||||||
|
custom_skin = "custom"
|
||||||
|
|
||||||
# body
|
# body
|
||||||
enableToc = true
|
enableToc = true
|
||||||
|
|
|
@ -89,6 +89,14 @@ $(document).ready(function() {
|
||||||
$('.navbar__menu').addClass('is-active');
|
$('.navbar__menu').addClass('is-active');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$('.navbar__menu-item').each(function() {
|
||||||
|
var menu = $(this).text().trim().toLowerCase();
|
||||||
|
if (location.pathname.includes(menu)) {
|
||||||
|
$(this).addClass('active');
|
||||||
|
} else {
|
||||||
|
$(this).removeClass('active');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// truncate
|
// truncate
|
||||||
$('.summary__text').shave(160);
|
$('.summary__text').shave(160);
|
||||||
|
|
|
@ -147,11 +147,15 @@
|
||||||
@include align-items(center);
|
@include align-items(center);
|
||||||
@include justify-content(center);
|
@include justify-content(center);
|
||||||
@include themify($themes) {
|
@include themify($themes) {
|
||||||
color: themed('navbar-title-color');
|
color: themed('navbar-title-color');
|
||||||
@include on-event {
|
@include on-event {
|
||||||
color: themed('navbar-title-hover-color');
|
color: themed('navbar-title-hover-color');
|
||||||
background-color: themed('navbar-menu-hover-background-color');
|
background-color: themed('navbar-menu-hover-background-color');
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
border-bottom: 1px solid themed('navbar-border-bottom-color');
|
||||||
|
}
|
||||||
|
&.active {
|
||||||
|
color: themed('navbar-title-active-color') !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,14 +24,10 @@ $navbar_border_bottom_color: {{ $scr.Get "navbar_border_bottom_color" }};
|
||||||
$navbar_background_color: {{ $scr.Get "navbar_background_color" }};
|
$navbar_background_color: {{ $scr.Get "navbar_background_color" }};
|
||||||
$navbar_title_color: {{ $scr.Get "navbar_title_color" }};
|
$navbar_title_color: {{ $scr.Get "navbar_title_color" }};
|
||||||
$navbar_title_hover_color: {{ $scr.Get "navbar_title_hover_color" }};
|
$navbar_title_hover_color: {{ $scr.Get "navbar_title_hover_color" }};
|
||||||
|
$navbar_title_active_color: {{ $scr.Get "navbar_title_active_color" }};
|
||||||
$navbar_menu_hover_background_color: {{ $scr.Get "navbar_menu_hover_background_color" }};
|
$navbar_menu_hover_background_color: {{ $scr.Get "navbar_menu_hover_background_color" }};
|
||||||
$navbar_dropdown_item_hover_color: {{ $scr.Get "navbar_dropdown_item_hover_color" }};
|
$navbar_dropdown_item_hover_color: {{ $scr.Get "navbar_dropdown_item_hover_color" }};
|
||||||
$navbar_dropdown_item_hover_background_color: {{ $scr.Get "navbar_dropdown_item_hover_background_color" }};
|
$navbar_dropdown_item_hover_background_color: {{ $scr.Get "navbar_dropdown_item_hover_background_color" }};
|
||||||
$input_color: {{ $scr.Get "input_color" }};
|
|
||||||
$input_background_color: {{ $scr.Get "input_background_color" }};
|
|
||||||
$input_border_color: {{ $scr.Get "input_border_color" }};
|
|
||||||
$input_hover_border_color: {{ $scr.Get "input_hover_border_color" }};
|
|
||||||
$input_focus_border_color: {{ $scr.Get "input_focus_border_color" }};
|
|
||||||
$sidebar_title_color: {{ $scr.Get "sidebar_title_color" }};
|
$sidebar_title_color: {{ $scr.Get "sidebar_title_color" }};
|
||||||
$sidebar_li_color: {{ $scr.Get "sidebar_li_color" }};
|
$sidebar_li_color: {{ $scr.Get "sidebar_li_color" }};
|
||||||
$taxo_title_color: {{ $scr.Get "taxo_title_color" }};
|
$taxo_title_color: {{ $scr.Get "taxo_title_color" }};
|
||||||
|
@ -39,6 +35,7 @@ $taxo_tags_background_color: {{ $scr.Get "taxo_tags_background_color" }};
|
||||||
$taxo_tags_color: {{ $scr.Get "taxo_tags_color" }};
|
$taxo_tags_color: {{ $scr.Get "taxo_tags_color" }};
|
||||||
$taxo_series_background_color: {{ $scr.Get "taxo_series_background_color" }};
|
$taxo_series_background_color: {{ $scr.Get "taxo_series_background_color" }};
|
||||||
$taxo_series_color: {{ $scr.Get "taxo_series_color" }};
|
$taxo_series_color: {{ $scr.Get "taxo_series_color" }};
|
||||||
|
$taxo_background_color_hover: {{ $scr.Get "taxo_background_color_hover" }};
|
||||||
$taxo_categories_background_color: {{ $scr.Get "taxo_categories_background_color" }};
|
$taxo_categories_background_color: {{ $scr.Get "taxo_categories_background_color" }};
|
||||||
$taxo_categories_color: {{ $scr.Get "taxo_categories_color" }};
|
$taxo_categories_color: {{ $scr.Get "taxo_categories_color" }};
|
||||||
$breadcrumb_item_color: {{ $scr.Get "breadcrumb_item_color" }};
|
$breadcrumb_item_color: {{ $scr.Get "breadcrumb_item_color" }};
|
||||||
|
@ -132,5 +129,6 @@ $archive_hover_line_color: {{ $scr.Get "archive_hover_line_color" }};
|
||||||
@import 'pages/list';
|
@import 'pages/list';
|
||||||
@import 'pages/terms';
|
@import 'pages/terms';
|
||||||
@import 'pages/archive';
|
@import 'pages/archive';
|
||||||
|
@import 'pages/404';
|
||||||
|
|
||||||
@import 'prism/prism';
|
@import 'prism/prism';
|
|
@ -0,0 +1,19 @@
|
||||||
|
.not-found {
|
||||||
|
height: 100%;
|
||||||
|
font-family: "Montserrat", sans-serif;
|
||||||
|
|
||||||
|
@include flexbox();
|
||||||
|
@include align-items(center);
|
||||||
|
@include justify-content(center);
|
||||||
|
@include flex-direction(column);
|
||||||
|
|
||||||
|
@include themify($themes) {
|
||||||
|
.title {
|
||||||
|
color: themed('title-color');
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
color: themed('meta-color');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,145 +1,211 @@
|
||||||
/* Generated with http://k88hudson.github.io/syntax-highlighting-theme-generator/www */
|
.theme__hacker {
|
||||||
/* http://k88hudson.github.io/react-markdocs */
|
code[class*="language-"],
|
||||||
/**
|
pre[class*="language-"] {
|
||||||
* @author k88hudson
|
|
||||||
*
|
|
||||||
* Based on prism.js default theme for JavaScript, CSS and HTML
|
|
||||||
* Based on dabblet (http://dabblet.com)
|
|
||||||
* @author Lea Verou
|
|
||||||
*/
|
|
||||||
/*********************************************************
|
|
||||||
* General
|
|
||||||
*/
|
|
||||||
.theme__hacker {
|
|
||||||
pre[class*="language-"],
|
|
||||||
code[class*="language-"] {
|
|
||||||
color: #f3ff6e;
|
|
||||||
font-size: 13px;
|
|
||||||
text-shadow: none;
|
|
||||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
||||||
direction: ltr;
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
word-spacing: normal;
|
word-spacing: normal;
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
line-height: 1.5;
|
word-wrap: normal;
|
||||||
|
color: #fafafa !important;
|
||||||
|
background: #2f2f2f;
|
||||||
|
font-family: Roboto Mono, monospace;
|
||||||
|
font-size: 1em;
|
||||||
|
line-height: 1.5em;
|
||||||
|
|
||||||
-moz-tab-size: 4;
|
-moz-tab-size: 4;
|
||||||
-o-tab-size: 4;
|
-o-tab-size: 4;
|
||||||
tab-size: 4;
|
tab-size: 4;
|
||||||
|
|
||||||
-webkit-hyphens: none;
|
-webkit-hyphens: none;
|
||||||
-moz-hyphens: none;
|
-moz-hyphens: none;
|
||||||
-ms-hyphens: none;
|
-ms-hyphens: none;
|
||||||
hyphens: none;
|
hyphens: none;
|
||||||
}
|
}
|
||||||
pre[class*="language-"]::selection,
|
|
||||||
|
code[class*="language-"]::-moz-selection,
|
||||||
|
pre[class*="language-"]::-moz-selection,
|
||||||
|
code[class*="language-"] ::-moz-selection,
|
||||||
|
pre[class*="language-"] ::-moz-selection {
|
||||||
|
background: #363636;
|
||||||
|
}
|
||||||
|
|
||||||
code[class*="language-"]::selection,
|
code[class*="language-"]::selection,
|
||||||
pre[class*="language-"]::mozselection,
|
pre[class*="language-"]::selection,
|
||||||
code[class*="language-"]::mozselection {
|
code[class*="language-"] ::selection,
|
||||||
text-shadow: none;
|
pre[class*="language-"] ::selection {
|
||||||
background: #b3d4fc;
|
background: #363636;
|
||||||
}
|
|
||||||
@media print {
|
|
||||||
pre[class*="language-"],
|
|
||||||
code[class*="language-"] {
|
|
||||||
text-shadow: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pre[class*="language-"] {
|
|
||||||
padding: 1em;
|
|
||||||
margin: .5em 0;
|
|
||||||
overflow: auto;
|
|
||||||
background: #202420;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
:not(pre) > code[class*="language-"] {
|
:not(pre) > code[class*="language-"] {
|
||||||
padding: .1em .3em;
|
white-space: normal;
|
||||||
border-radius: .3em;
|
border-radius: 0.2em;
|
||||||
|
padding: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"] {
|
||||||
|
overflow: auto;
|
||||||
|
position: relative;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
padding: 1.25em 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.language-css > code,
|
||||||
|
.language-sass > code,
|
||||||
|
.language-scss > code {
|
||||||
|
color: #fd9170;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="language-"] .namespace {
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.atrule {
|
||||||
color: #1fff2a;
|
color: #1fff2a;
|
||||||
background: #202420;
|
|
||||||
}
|
}
|
||||||
/*********************************************************
|
|
||||||
* Tokens
|
.token.attr-name {
|
||||||
*/
|
color: #ffcb6b;
|
||||||
.namespace {
|
|
||||||
opacity: .7;
|
|
||||||
}
|
}
|
||||||
.token.comment,
|
|
||||||
.token.prolog,
|
.token.attr-value {
|
||||||
.token.doctype,
|
color: #fff59d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.attribute {
|
||||||
|
color: #fff59d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.boolean {
|
||||||
|
color: #1fff2a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.builtin {
|
||||||
|
color: #ffcb6b;
|
||||||
|
}
|
||||||
|
|
||||||
.token.cdata {
|
.token.cdata {
|
||||||
color: #93a1a1;
|
color: #80cbc4;
|
||||||
}
|
}
|
||||||
.token.punctuation {
|
|
||||||
color: #e08c48;
|
.token.char {
|
||||||
|
color: #80cbc4;
|
||||||
}
|
}
|
||||||
.token.property,
|
|
||||||
.token.tag,
|
.token.class {
|
||||||
.token.boolean,
|
color: #ffcb6b;
|
||||||
.token.number,
|
}
|
||||||
.token.constant,
|
|
||||||
.token.symbol,
|
.token.class-name {
|
||||||
|
color: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.comment {
|
||||||
|
color: #616161;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.constant {
|
||||||
|
color: #1fff2a;
|
||||||
|
}
|
||||||
|
|
||||||
.token.deleted {
|
.token.deleted {
|
||||||
color: #7b4d94;
|
color: #ff6666;
|
||||||
}
|
}
|
||||||
.token.selector,
|
|
||||||
.token.attr-name,
|
.token.doctype {
|
||||||
.token.string,
|
color: #616161;
|
||||||
.token.char,
|
|
||||||
.token.builtin,
|
|
||||||
.token.inserted {
|
|
||||||
color: #3f8a16;
|
|
||||||
}
|
}
|
||||||
.token.operator,
|
|
||||||
.token.entity,
|
.token.entity {
|
||||||
.token.url,
|
color: #ff6666;
|
||||||
.language-css .token.string,
|
|
||||||
.style .token.string {
|
|
||||||
color: #a67f59;
|
|
||||||
background: #202420;
|
|
||||||
}
|
|
||||||
.token.atrule,
|
|
||||||
.token.attr-value,
|
|
||||||
.token.keyword {
|
|
||||||
color: #8FFFE9;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.function {
|
.token.function {
|
||||||
color: #1fff2a;
|
color: #1fff2a;
|
||||||
}
|
}
|
||||||
.token.regex,
|
|
||||||
.token.important,
|
.token.hexcode {
|
||||||
.token.variable {
|
color: #fafafa;
|
||||||
color: #e08c48;
|
|
||||||
}
|
}
|
||||||
.token.important,
|
|
||||||
.token.bold {
|
.token.id {
|
||||||
|
color: #1fff2a;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.token.italic {
|
|
||||||
font-style: italic;
|
.token.important {
|
||||||
|
color: #1fff2a;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.token.entity {
|
|
||||||
cursor: help;
|
.token.inserted {
|
||||||
|
color: #80cbc4;
|
||||||
}
|
}
|
||||||
/*********************************************************
|
|
||||||
* Line highlighting
|
.token.keyword {
|
||||||
*/
|
color: #ff80ab;
|
||||||
pre[data-line] {
|
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
pre[class*="language-"] > code[class*="language-"] {
|
|
||||||
position: relative;
|
.token.number {
|
||||||
z-index: 1;
|
color: #b388ff;
|
||||||
}
|
}
|
||||||
.line-highlight {
|
|
||||||
position: absolute;
|
.token.operator {
|
||||||
left: 0;
|
color: #89ddff;
|
||||||
right: 0;
|
}
|
||||||
padding: inherit 0;
|
|
||||||
margin-top: 1em;
|
.token.prolog {
|
||||||
background: #202420;
|
color: #616161;
|
||||||
box-shadow: inset 5px 0 0 #f7d87c;
|
}
|
||||||
z-index: 0;
|
|
||||||
pointer-events: none;
|
.token.property {
|
||||||
line-height: inherit;
|
color: #80cbc4;
|
||||||
white-space: pre;
|
}
|
||||||
|
|
||||||
|
.token.pseudo-class {
|
||||||
|
color: #fff59d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.pseudo-element {
|
||||||
|
color: #fff59d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.punctuation {
|
||||||
|
color: #b3e9ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.regex {
|
||||||
|
color: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.selector {
|
||||||
|
color: #ff6666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.string {
|
||||||
|
color: #fff59d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.symbol {
|
||||||
|
color: #1fff2a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.tag {
|
||||||
|
color: #1fff2a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.unit {
|
||||||
|
color: #fd9170;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.url {
|
||||||
|
color: #ff6666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.variable {
|
||||||
|
color: #ff6666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.interpolation {
|
||||||
|
color: #fafafa;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -22,14 +22,10 @@ $custom: (
|
||||||
navbar-background-color: $navbar_background_color,
|
navbar-background-color: $navbar_background_color,
|
||||||
navbar-title-color: $navbar_title_color,
|
navbar-title-color: $navbar_title_color,
|
||||||
navbar-title-hover-color: $navbar_title_hover_color,
|
navbar-title-hover-color: $navbar_title_hover_color,
|
||||||
|
navbar-title-active-color: $navbar_title_active_color,
|
||||||
navbar-menu-hover-background-color: $navbar_menu_hover_background_color,
|
navbar-menu-hover-background-color: $navbar_menu_hover_background_color,
|
||||||
navbar-dropdown-item-hover-color: $navbar_dropdown_item_hover_color,
|
navbar-dropdown-item-hover-color: $navbar_dropdown_item_hover_color,
|
||||||
navbar-dropdown-item-hover-background-color: $navbar_dropdown_item_hover_background_color,
|
navbar-dropdown-item-hover-background-color: $navbar_dropdown_item_hover_background_color,
|
||||||
input-color: $input_color,
|
|
||||||
input-background-color: $input_background_color,
|
|
||||||
input-border-color: $input_border_color,
|
|
||||||
input-hover-border-color: $input_hover_border_color,
|
|
||||||
input-focus-border-color: $input_focus_border_color,
|
|
||||||
sidebar-title-color: $sidebar_title_color,
|
sidebar-title-color: $sidebar_title_color,
|
||||||
sidebar-li-color: $sidebar_li_color,
|
sidebar-li-color: $sidebar_li_color,
|
||||||
taxo-title-color: $taxo_title_color,
|
taxo-title-color: $taxo_title_color,
|
||||||
|
@ -39,6 +35,7 @@ $custom: (
|
||||||
taxo-series-color: $taxo-series-color,
|
taxo-series-color: $taxo-series-color,
|
||||||
taxo-categories-background-color: $taxo-categories-background-color,
|
taxo-categories-background-color: $taxo-categories-background-color,
|
||||||
taxo-categories-color: $taxo-categories-color,
|
taxo-categories-color: $taxo-categories-color,
|
||||||
|
taxo-background-color-hover: $taxo-background-color-hover,
|
||||||
breadcrumb-item-color: $breadcrumb-item-color,
|
breadcrumb-item-color: $breadcrumb-item-color,
|
||||||
breadcrumb-background-color: $breadcrumb-background-color,
|
breadcrumb-background-color: $breadcrumb-background-color,
|
||||||
breadcrumb-item-active-color: $breadcrumb-item-active-color,
|
breadcrumb-item-active-color: $breadcrumb-item-active-color,
|
||||||
|
|
|
@ -22,14 +22,10 @@ $dark: (
|
||||||
navbar-background-color: #403E41,
|
navbar-background-color: #403E41,
|
||||||
navbar-title-color: #FCFCFA,
|
navbar-title-color: #FCFCFA,
|
||||||
navbar-title-hover-color: #FFD866,
|
navbar-title-hover-color: #FFD866,
|
||||||
|
navbar-title-active-color: #FF6188,
|
||||||
navbar-menu-hover-background-color: lighten(#403E41, 5%),
|
navbar-menu-hover-background-color: lighten(#403E41, 5%),
|
||||||
navbar-dropdown-item-hover-color: #FFD866,
|
navbar-dropdown-item-hover-color: #FFD866,
|
||||||
navbar-dropdown-item-hover-background-color: #595B5C,
|
navbar-dropdown-item-hover-background-color: #595B5C,
|
||||||
input-color: #FCFCFA,
|
|
||||||
input-background-color: #403E41,
|
|
||||||
input-border-color: #595B5C,
|
|
||||||
input-hover-border-color: #727072,
|
|
||||||
input-focus-border-color: #727072,
|
|
||||||
sidebar-title-color: #aed581,
|
sidebar-title-color: #aed581,
|
||||||
sidebar-li-color: #FCFCFA,
|
sidebar-li-color: #FCFCFA,
|
||||||
taxo-title-color: #bdbdbd,
|
taxo-title-color: #bdbdbd,
|
||||||
|
@ -39,6 +35,7 @@ $dark: (
|
||||||
taxo-series-color: #EA9C77,
|
taxo-series-color: #EA9C77,
|
||||||
taxo-categories-background-color: #212121,
|
taxo-categories-background-color: #212121,
|
||||||
taxo-categories-color: #AB9DF2,
|
taxo-categories-color: #AB9DF2,
|
||||||
|
taxo-background-color-hover: darken(#212121, 5%),
|
||||||
breadcrumb-item-color: #82aaff,
|
breadcrumb-item-color: #82aaff,
|
||||||
breadcrumb-background-color: #212121,
|
breadcrumb-background-color: #212121,
|
||||||
breadcrumb-item-active-color: #bdbdbd,
|
breadcrumb-item-active-color: #bdbdbd,
|
||||||
|
@ -78,6 +75,7 @@ $dark: (
|
||||||
search-placeholder-color: #727072,
|
search-placeholder-color: #727072,
|
||||||
search-color: #FCFCFA,
|
search-color: #FCFCFA,
|
||||||
search-icon-color: #727072,
|
search-icon-color: #727072,
|
||||||
|
search-content-color: inherit,
|
||||||
search-background-color: #212121,
|
search-background-color: #212121,
|
||||||
search-content-background-color: #595B5C,
|
search-content-background-color: #595B5C,
|
||||||
search-hover-background-color: #727072,
|
search-hover-background-color: #727072,
|
||||||
|
|
|
@ -25,6 +25,7 @@ $hacker: (
|
||||||
navbar-background-color: #252526,
|
navbar-background-color: #252526,
|
||||||
navbar-title-color: #E3CD26,
|
navbar-title-color: #E3CD26,
|
||||||
navbar-title-hover-color: $primary-color,
|
navbar-title-hover-color: $primary-color,
|
||||||
|
navbar-title-active-color: #f3ff6e,
|
||||||
navbar-menu-hover-background-color: lighten(#151715, 20%),
|
navbar-menu-hover-background-color: lighten(#151715, 20%),
|
||||||
navbar-dropdown-item-hover-color: $primary-color,
|
navbar-dropdown-item-hover-color: $primary-color,
|
||||||
navbar-dropdown-item-hover-background-color: lighten(#151715, 12%),
|
navbar-dropdown-item-hover-background-color: lighten(#151715, 12%),
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
$primary-color: #607d8b;
|
|
||||||
$secondary-color: #bdbdbd;
|
|
||||||
|
|
||||||
$light: (
|
$light: (
|
||||||
footer-background-color: #eeeeee,
|
footer-background-color: #eeeeee,
|
||||||
footer-color: #424242,
|
footer-color: #424242,
|
||||||
link: $primary-color,
|
link: #607d8b,
|
||||||
link-hover: #FF6188,
|
link-hover: #FF6188,
|
||||||
title-color: $primary-color,
|
title-color: #607d8b,
|
||||||
meta-color: #424242,
|
meta-color: #424242,
|
||||||
body-color: #424242,
|
body-color: #424242,
|
||||||
hr-color: #fcfcfa,
|
hr-color: #fcfcfa,
|
||||||
|
@ -24,9 +21,10 @@ $light: (
|
||||||
navbar-border-bottom-color: #e0e0e0,
|
navbar-border-bottom-color: #e0e0e0,
|
||||||
navbar-background-color: #eeeeee,
|
navbar-background-color: #eeeeee,
|
||||||
navbar-title-color: #424242,
|
navbar-title-color: #424242,
|
||||||
navbar-title-hover-color: $primary-color,
|
navbar-title-hover-color: #607d8b,
|
||||||
|
navbar-title-active-color: #FF6188,
|
||||||
navbar-menu-hover-background-color: darken(#eeeeee, 5%),
|
navbar-menu-hover-background-color: darken(#eeeeee, 5%),
|
||||||
navbar-dropdown-item-hover-color: $primary-color,
|
navbar-dropdown-item-hover-color: #607d8b,
|
||||||
navbar-dropdown-item-hover-background-color: #bdbdbd,
|
navbar-dropdown-item-hover-background-color: #bdbdbd,
|
||||||
sidebar-title-color: #424242,
|
sidebar-title-color: #424242,
|
||||||
sidebar-li-color: #424242,
|
sidebar-li-color: #424242,
|
||||||
|
@ -47,10 +45,10 @@ $light: (
|
||||||
single-hr-background-color: #bdbdbd,
|
single-hr-background-color: #bdbdbd,
|
||||||
single-blockquote-border-color: #bdbdbd,
|
single-blockquote-border-color: #bdbdbd,
|
||||||
single-header-title-color: #424242,
|
single-header-title-color: #424242,
|
||||||
single-contents-title-color: $primary-color,
|
single-contents-title-color: #607d8b,
|
||||||
related-header-title-color: #424242,
|
related-header-title-color: #424242,
|
||||||
related-link-color: $primary-color,
|
related-link-color: #607d8b,
|
||||||
content-pre-main-color: $primary-color,
|
content-pre-main-color: #607d8b,
|
||||||
content-pre-background-color: #F5F2F0,
|
content-pre-background-color: #F5F2F0,
|
||||||
content-code-color: #212121,
|
content-code-color: #212121,
|
||||||
content-code-background-color: #F5F2F0,
|
content-code-background-color: #F5F2F0,
|
||||||
|
@ -85,8 +83,8 @@ $light: (
|
||||||
mark-background-color: #FF6188,
|
mark-background-color: #FF6188,
|
||||||
archive-key-color: #FCFCFA,
|
archive-key-color: #FCFCFA,
|
||||||
archive-meta-color: #424242,
|
archive-meta-color: #424242,
|
||||||
archive-type-color: darken($secondary-color, 40%),
|
archive-type-color: darken(#bdbdbd, 40%),
|
||||||
archive-key-background-color: $primary-color,
|
archive-key-background-color: #607d8b,
|
||||||
archive-type-background-color: $secondary-color,
|
archive-type-background-color: #bdbdbd,
|
||||||
archive-hover-line-color: #FF6188,
|
archive-hover-line-color: #FF6188,
|
||||||
);
|
);
|
|
@ -25,6 +25,7 @@ $solarized: (
|
||||||
navbar-background-color: #EEE8D5,
|
navbar-background-color: #EEE8D5,
|
||||||
navbar-title-color: #424242,
|
navbar-title-color: #424242,
|
||||||
navbar-title-hover-color: $primary-color,
|
navbar-title-hover-color: $primary-color,
|
||||||
|
navbar-title-active-color: $primary-color,
|
||||||
navbar-menu-hover-background-color: darken(#FBF1D1, 5%),
|
navbar-menu-hover-background-color: darken(#FBF1D1, 5%),
|
||||||
navbar-dropdown-item-hover-color: $primary-color,
|
navbar-dropdown-item-hover-color: $primary-color,
|
||||||
navbar-dropdown-item-hover-background-color: #bdbdbd,
|
navbar-dropdown-item-hover-background-color: #bdbdbd,
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
baseURL = "http://example.org/"
|
||||||
|
title = "Hugo Zzo Theme"
|
||||||
|
theme = "zzo"
|
||||||
|
|
||||||
|
defaultContentLanguage = "en"
|
||||||
|
defaultContentLanguageInSubdir = true
|
||||||
|
hasCJKLanguage = true
|
||||||
|
|
||||||
|
summaryLength = 70
|
||||||
|
|
||||||
|
googleAnalytics = ""
|
||||||
|
copyright = "©yourcopyright"
|
||||||
|
timeout = 10000
|
||||||
|
enableEmoji = true
|
||||||
|
paginate = 7
|
||||||
|
rssLimit = 100
|
||||||
|
|
||||||
|
[outputs]
|
||||||
|
home = [ "HTML", "RSS", "JSON" ]
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
category = "categories"
|
||||||
|
tag = "tags"
|
||||||
|
series = "series"
|
|
@ -0,0 +1,9 @@
|
||||||
|
[en]
|
||||||
|
title = "Hugo Zzo Theme"
|
||||||
|
languageName = "English"
|
||||||
|
weight = 1
|
||||||
|
|
||||||
|
[ko]
|
||||||
|
title = "Hugo Zzo Theme"
|
||||||
|
languageName = "한국어"
|
||||||
|
weight = 2
|
|
@ -0,0 +1,39 @@
|
||||||
|
[[main]]
|
||||||
|
identifier = "about"
|
||||||
|
name = "about"
|
||||||
|
url = "about"
|
||||||
|
weight = 1
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "archive"
|
||||||
|
name = "archive"
|
||||||
|
url = "archive"
|
||||||
|
weight = 2
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "gallery"
|
||||||
|
name = "gallery"
|
||||||
|
url = "gallery"
|
||||||
|
weight = 3
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
parent = "gallery"
|
||||||
|
name = "cartoon"
|
||||||
|
url = "gallery/cartoon"
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
parent = "gallery"
|
||||||
|
name = "photo"
|
||||||
|
url = "gallery/photo"
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "posts"
|
||||||
|
name = "posts"
|
||||||
|
url = "posts"
|
||||||
|
weight = 4
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "notes"
|
||||||
|
name = "notes"
|
||||||
|
url = "notes"
|
||||||
|
weight = 5
|
|
@ -0,0 +1,42 @@
|
||||||
|
description = "The Zzo theme for Hugo example site."
|
||||||
|
custom_css = ["css/custom.css", "scss/custom.scss"]
|
||||||
|
custom_js = ["js/custom.js"]
|
||||||
|
|
||||||
|
# body
|
||||||
|
enableToc = true
|
||||||
|
enableBreadcrumb = true
|
||||||
|
enableCustomScrollbar = true
|
||||||
|
enablePhotoSwipe = true
|
||||||
|
enableSearch = true
|
||||||
|
enableMark = true
|
||||||
|
|
||||||
|
# sidebar
|
||||||
|
enableSidebarTags = true
|
||||||
|
enableSidebarSeries = true
|
||||||
|
enableSidebarCategories = true
|
||||||
|
|
||||||
|
# footer
|
||||||
|
showPoweredBy = true
|
||||||
|
showFeedLinks = true
|
||||||
|
showSocialLinks = true
|
||||||
|
enableLangChange = true
|
||||||
|
enableThemeChange = true
|
||||||
|
themeOptions = ["custom", "dark", "light", "hacker", "solarized"]
|
||||||
|
|
||||||
|
[marketing]
|
||||||
|
google_analytics = ""
|
||||||
|
google_tag_manager = ""
|
||||||
|
|
||||||
|
[socialOptions]
|
||||||
|
facebook = "http://example.org/"
|
||||||
|
twitter = "http://example.org/"
|
||||||
|
github = "http://example.org/"
|
||||||
|
stack-overflow = ""
|
||||||
|
instagram = ""
|
||||||
|
google-plus = ""
|
||||||
|
youtube = ""
|
||||||
|
medium = ""
|
||||||
|
tumblr = ""
|
||||||
|
linkedin = ""
|
||||||
|
pinterest = "http://example.org/"
|
||||||
|
stack-exchange = ""
|
|
@ -0,0 +1,88 @@
|
||||||
|
footer_background_color = "#eeeeee"
|
||||||
|
footer_color = "#424242"
|
||||||
|
link = "#607d8b"
|
||||||
|
link_hover = "#FF6188"
|
||||||
|
title_color = "#607d8b"
|
||||||
|
meta_color = "#424242"
|
||||||
|
body_color = "#424242"
|
||||||
|
hr_color = "#fcfcfa"
|
||||||
|
body_background_color = "#fafafa"
|
||||||
|
backdrop_background_color = "#e0e0e0"
|
||||||
|
dropdown_border_color = "#bdbdbd"
|
||||||
|
dropdown_border_top_color = "#e0e0e0"
|
||||||
|
dropdown_item_active_background_color = "#e0e0e0"
|
||||||
|
dropdown_title_background_color = "#fafafa"
|
||||||
|
dropdown_content_background_color = "#fafafa"
|
||||||
|
dropdown_footer_item_color = "#424242"
|
||||||
|
dropdown_item_hover_background_color = "#bdbdbd"
|
||||||
|
dropdown_item_hover_color = "#fcfcfa"
|
||||||
|
dropdown_item_color = "#424242"
|
||||||
|
navbar_border_bottom_color = "#e0e0e0"
|
||||||
|
navbar_background_color = "#eeeeee"
|
||||||
|
navbar_title_color = "#424242"
|
||||||
|
navbar_title_hover_color = "#607d8b"
|
||||||
|
navbar_title_active_color = "#FF6188"
|
||||||
|
navbar_menu_hover_background_color = "#e1e1e1"
|
||||||
|
navbar_dropdown_item_hover_color = "#607d8b"
|
||||||
|
navbar_dropdown_item_hover_background_color = "#bdbdbd"
|
||||||
|
sidebar_title_color = "#424242"
|
||||||
|
sidebar_li_color = "#424242"
|
||||||
|
taxo_title_color = "#424242"
|
||||||
|
taxo_tags_background_color = "#9e9e9e"
|
||||||
|
taxo_tags_color = "#eeeeee"
|
||||||
|
taxo_series_background_color = "#9e9e9e"
|
||||||
|
taxo_series_color = "#eeeeee"
|
||||||
|
taxo_categories_background_color = "#9e9e9e"
|
||||||
|
taxo_categories_color = "#eeeeee"
|
||||||
|
taxo_background_color_hover = "#919191"
|
||||||
|
breadcrumb_item_color = "#424242"
|
||||||
|
breadcrumb_background_color = "#eeeeee"
|
||||||
|
breadcrumb_item_active_color = "#bdbdbd"
|
||||||
|
list_header_title_color = "#424242"
|
||||||
|
figcaption_color = "#bdbdbd"
|
||||||
|
figcaption_strong_color = "#424242"
|
||||||
|
single_hr_background_color = "#bdbdbd"
|
||||||
|
single_blockquote_border_color = "#bdbdbd"
|
||||||
|
single_header_title_color = "#424242"
|
||||||
|
single_contents_title_color = "#607d8b"
|
||||||
|
related_header_title_color = "#424242"
|
||||||
|
related_link_color = "#607d8b"
|
||||||
|
content_pre_main_color = "#607d8b"
|
||||||
|
content_pre_background_color = "#F5F2F0"
|
||||||
|
content_code_color = "#212121"
|
||||||
|
content_code_background_color = "#F5F2F0"
|
||||||
|
burger_menu_color = "#9e9e9e"
|
||||||
|
social_icon_color = "#9e9e9e"
|
||||||
|
social_icon_hover_color = "#6b6b6b"
|
||||||
|
pagination_link_color = "#424242"
|
||||||
|
pagination_background_color = "#eeeeee"
|
||||||
|
pagination_disabled_color = "#bdbdbd"
|
||||||
|
pagination_number_color = "#757575"
|
||||||
|
photoswipe_hover_color = "#fcfcfa"
|
||||||
|
photoswipe_color = "#fcfcfa"
|
||||||
|
photoswipe_hover_background_color = "#727072"
|
||||||
|
photoswipe_background_color = "#403E41"
|
||||||
|
terms_title_color = "#9e9e9e"
|
||||||
|
terms_tags_color = "#424242"
|
||||||
|
terms_categories_color = "#424242"
|
||||||
|
terms_series_color = "#424242"
|
||||||
|
terms_len_color = "#727072"
|
||||||
|
toc_label_color = "#727072"
|
||||||
|
toc_title_color = "#727072"
|
||||||
|
toc_vertical_line = "#727072"
|
||||||
|
toc_vertical_line_active = "#FF6188"
|
||||||
|
search_placeholder_color = "#eeeeee"
|
||||||
|
search_color = "#fcfcfa"
|
||||||
|
search_icon_color = "#eeeeee"
|
||||||
|
search_background_color = "#9e9e9e"
|
||||||
|
search_content_color = "#fcfcfa"
|
||||||
|
search_content_background_color = "#9e9e9e"
|
||||||
|
search_hover_background_color = "#848484"
|
||||||
|
mark_color = "#fcfcfa"
|
||||||
|
mark_background_color = "#FF6188"
|
||||||
|
archive_key_color = "#fcfcfa"
|
||||||
|
archive_meta_color = "#424242"
|
||||||
|
archive_type_color = "#575757"
|
||||||
|
archive_key_background_color = "#607d8b"
|
||||||
|
archive_type_background_color = "#bdbdbd"
|
||||||
|
archive_hover_line_color = "#FF6188"
|
|
@ -1,92 +0,0 @@
|
||||||
name = "custom"
|
|
||||||
|
|
||||||
footer_background_color = "#403E41"
|
|
||||||
footer_color = "#bdbdbd"
|
|
||||||
link = "#FFD866"
|
|
||||||
link_hover = "#FF6188"
|
|
||||||
title_color = "#FFD866"
|
|
||||||
meta_color = "#FCFCFA"
|
|
||||||
body_color = "#FCFCFA"
|
|
||||||
hr_color = "#FCFCFA"
|
|
||||||
body_background_color = "#2D2A2E"
|
|
||||||
backdrop_background_color = "#212121"
|
|
||||||
dropdown_border_color = "#212121"
|
|
||||||
dropdown_border_top_color = "#424242"
|
|
||||||
dropdown_item_active_background_color = "#424242"
|
|
||||||
dropdown_title_background_color = "#2D2A2E"
|
|
||||||
dropdown_content_background_color = "#595B5C"
|
|
||||||
dropdown_footer_item_color = "#bdbdbd"
|
|
||||||
dropdown_item_hover_background_color = "#727072"
|
|
||||||
dropdown_item_hover_color = "#FCFCFA"
|
|
||||||
dropdown_item_color = "#FCFCFA"
|
|
||||||
navbar_border_bottom_color = "#2D2A2E"
|
|
||||||
navbar_background_color = "#403E41"
|
|
||||||
navbar_title_color = "#FCFCFA"
|
|
||||||
navbar_title_hover_color = "#FFD866"
|
|
||||||
navbar_menu_hover_background_color = "#4e3d4f"
|
|
||||||
navbar_dropdown_item_hover_color = "#FFD866"
|
|
||||||
navbar_dropdown_item_hover_background_color = "#595B5C"
|
|
||||||
input_color = "#FCFCFA"
|
|
||||||
input_background_color = "#403E41"
|
|
||||||
input_border_color = "#595B5C"
|
|
||||||
input_hover_border_color = "#727072"
|
|
||||||
input_focus_border_color = "#727072"
|
|
||||||
sidebar_title_color = "#aed581"
|
|
||||||
sidebar_li_color = "#FCFCFA"
|
|
||||||
taxo_title_color = "#bdbdbd"
|
|
||||||
taxo_tags_background_color = "#212121"
|
|
||||||
taxo_tags_color = "#78DCE8"
|
|
||||||
taxo_series_background_color = "#212121"
|
|
||||||
taxo_series_color = "#EA9C77"
|
|
||||||
taxo_categories_background_color = "#212121"
|
|
||||||
taxo_categories_color = "#AB9DF2"
|
|
||||||
breadcrumb_item_color = "#82aaff"
|
|
||||||
breadcrumb_background_color = "#212121"
|
|
||||||
breadcrumb_item_active_color = "#bdbdbd"
|
|
||||||
list_header_title_color = "#FCFCFA"
|
|
||||||
figcaption_color = "#bdbdbd"
|
|
||||||
figcaption_strong_color = "#FCFCFA"
|
|
||||||
single_hr_background_color = "#595B5C"
|
|
||||||
single_blockquote_border_color = "#FCFCFA"
|
|
||||||
single_header_title_color = "#FCFCFA"
|
|
||||||
single_contents_title_color = "#aed581"
|
|
||||||
related_header_title_color = "#FCFCFA"
|
|
||||||
related_link_color = "#A9DC76"
|
|
||||||
content_pre_main_color = "#FFA7C4"
|
|
||||||
content_pre_background_color = "#011627"
|
|
||||||
content_code_color = "#FCFCFA"
|
|
||||||
content_code_background_color = "#595B5C"
|
|
||||||
burger_menu_color = "#FCFCFA"
|
|
||||||
social_icon_color = "#bdbdbd"
|
|
||||||
social_icon_hover_color = "#f0f0f0"
|
|
||||||
pagination_link_color = "#82aaff"
|
|
||||||
pagination_background_color = "#212121"
|
|
||||||
pagination_disabled_color = "#757575"
|
|
||||||
pagination_number_color = "#FCFCFA"
|
|
||||||
photoswipe_hover_color = "#FCFCFA"
|
|
||||||
photoswipe_color = "#FCFCFA"
|
|
||||||
photoswipe_hover_background_color = "#727072"
|
|
||||||
photoswipe_background_color = "#403E41"
|
|
||||||
terms_title_color = "#727072"
|
|
||||||
terms_tags_color = "#78DCE8"
|
|
||||||
terms_categories_color = "#AB9DF2"
|
|
||||||
terms_series_color = "#EA9C77"
|
|
||||||
terms_len_color = "#727072"
|
|
||||||
toc_label_color = "#727072"
|
|
||||||
toc_title_color = "#90a4ae"
|
|
||||||
toc_vertical_line = "#727072"
|
|
||||||
toc_vertical_line_active = "#FF6188"
|
|
||||||
search_placeholder_color = "#727072"
|
|
||||||
search_color = "#FCFCFA"
|
|
||||||
search_icon_color = "#727072"
|
|
||||||
search_background_color = "#212121"
|
|
||||||
search_content_background_color = "#595B5C"
|
|
||||||
search_hover_background_color = "#727072"
|
|
||||||
mark_color = "#FCFCFA"
|
|
||||||
mark_background_color = "#FF6188"
|
|
||||||
archive_key_color = "#FCFCFA"
|
|
||||||
archive_type_color = "#FCFCFA"
|
|
||||||
archive_meta_color = "#aed581"
|
|
||||||
archive_key_background_color = "#FF6188"
|
|
||||||
archive_type_background_color = "#82aaff"
|
|
||||||
archive_hover_line_color = "#FF6188"
|
|
|
@ -62,6 +62,10 @@ rssLimit = 100
|
||||||
pinterest = "http://example.org"
|
pinterest = "http://example.org"
|
||||||
stack-exchange = ""
|
stack-exchange = ""
|
||||||
|
|
||||||
|
[marketing]
|
||||||
|
google_analytics = ""
|
||||||
|
google_tag_manager = ""
|
||||||
|
|
||||||
[languages]
|
[languages]
|
||||||
[languages.en]
|
[languages.en]
|
||||||
title = "Hugo Zzo Theme"
|
title = "Hugo Zzo Theme"
|
||||||
|
|
|
@ -1 +1,8 @@
|
||||||
<div>404 page not found</div>
|
{{ define "main" }}
|
||||||
|
<main class="main">
|
||||||
|
<div class="not-found">
|
||||||
|
<h1 class="h1 title">404</h1>
|
||||||
|
<h6 class="h6 subtitle">Page not found</h6>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
{{ end }}
|
|
@ -8,7 +8,7 @@
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</article>
|
</article>
|
||||||
</header>
|
</header>
|
||||||
<main class="main">
|
<main class="main">
|
||||||
about page
|
about page
|
||||||
</main>
|
</main>
|
||||||
{{ end }}
|
{{ end }}
|
|
@ -1,3 +1,5 @@
|
||||||
|
{{ define "title" }}{{ .Site.Title }}{{ end }}
|
||||||
|
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<main class="main-main">
|
<main class="main-main">
|
||||||
<article class="{{ with .Section }}section-{{ . | urlize }} {{ end }}single-view">
|
<article class="{{ with .Section }}section-{{ . | urlize }} {{ end }}single-view">
|
||||||
|
|
|
@ -8,8 +8,12 @@
|
||||||
{{ else if not .p1.IsHome }}
|
{{ else if not .p1.IsHome }}
|
||||||
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }}
|
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<li {{ if eq .p1 .p2 }} class="is-active" {{ end }}>
|
<li {{ if eq .p1 .p2 }} class="is-active" {{ end }}>
|
||||||
<a href="{{ .p1.Permalink }}">{{ .p1.Title }}</a>
|
{{ if eq (len .p1.Title) 0 }}
|
||||||
|
<a href="{{ .p1.Permalink }}">{{ .p1.Site.Title }}</a>
|
||||||
|
{{ else }}
|
||||||
|
<a href="{{ .p1.Permalink }}">{{ .p1.Title }}</a>
|
||||||
|
{{ end }}
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</nav>
|
</nav>
|
|
@ -1,94 +1,90 @@
|
||||||
{{- $scr := .Scratch -}}
|
{{- $scr := .Scratch -}}
|
||||||
{{- $theme_index := .Site.Params.custom_skin -}}
|
{{ $skin := .Site.Data.skin }}
|
||||||
{{ $theme := index .Site.Data.themes $theme_index }}
|
|
||||||
|
|
||||||
{{- $scr.Set "footer_background_color" $theme.footer_background_color -}}
|
{{- $scr.Set "footer_background_color" $skin.footer_background_color -}}
|
||||||
{{- $scr.Set "footer_color" $theme.footer_color -}}
|
{{- $scr.Set "footer_color" $skin.footer_color -}}
|
||||||
{{- $scr.Set "link" $theme.link -}}
|
{{- $scr.Set "link" $skin.link -}}
|
||||||
{{- $scr.Set "link_hover" $theme.link_hover -}}
|
{{- $scr.Set "link_hover" $skin.link_hover -}}
|
||||||
{{- $scr.Set "title_color" $theme.title_color -}}
|
{{- $scr.Set "title_color" $skin.title_color -}}
|
||||||
{{- $scr.Set "meta_color" $theme.meta_color -}}
|
{{- $scr.Set "meta_color" $skin.meta_color -}}
|
||||||
{{- $scr.Set "body_color" $theme.body_color -}}
|
{{- $scr.Set "body_color" $skin.body_color -}}
|
||||||
{{- $scr.Set "hr_color" $theme.hr_color -}}
|
{{- $scr.Set "hr_color" $skin.hr_color -}}
|
||||||
{{- $scr.Set "body_background_color" $theme.body_background_color -}}
|
{{- $scr.Set "body_background_color" $skin.body_background_color -}}
|
||||||
{{- $scr.Set "backdrop_background_color" $theme.backdrop_background_color -}}
|
{{- $scr.Set "backdrop_background_color" $skin.backdrop_background_color -}}
|
||||||
{{- $scr.Set "dropdown_border_color" $theme.dropdown_border_color -}}
|
{{- $scr.Set "dropdown_border_color" $skin.dropdown_border_color -}}
|
||||||
{{- $scr.Set "dropdown_border_top_color" $theme.dropdown_border_top_color -}}
|
{{- $scr.Set "dropdown_border_top_color" $skin.dropdown_border_top_color -}}
|
||||||
{{- $scr.Set "dropdown_item_active_background_color" $theme.dropdown_item_active_background_color -}}
|
{{- $scr.Set "dropdown_item_active_background_color" $skin.dropdown_item_active_background_color -}}
|
||||||
{{- $scr.Set "dropdown_title_background_color" $theme.dropdown_title_background_color -}}
|
{{- $scr.Set "dropdown_title_background_color" $skin.dropdown_title_background_color -}}
|
||||||
{{- $scr.Set "dropdown_content_background_color" $theme.dropdown_content_background_color -}}
|
{{- $scr.Set "dropdown_content_background_color" $skin.dropdown_content_background_color -}}
|
||||||
{{- $scr.Set "dropdown_footer_item_color" $theme.dropdown_footer_item_color -}}
|
{{- $scr.Set "dropdown_footer_item_color" $skin.dropdown_footer_item_color -}}
|
||||||
{{- $scr.Set "dropdown_item_hover_background_color" $theme.dropdown_item_hover_background_color -}}
|
{{- $scr.Set "dropdown_item_hover_background_color" $skin.dropdown_item_hover_background_color -}}
|
||||||
{{- $scr.Set "dropdown_item_hover_color" $theme.dropdown_item_hover_color -}}
|
{{- $scr.Set "dropdown_item_hover_color" $skin.dropdown_item_hover_color -}}
|
||||||
{{- $scr.Set "dropdown_item_color" $theme.dropdown_item_color -}}
|
{{- $scr.Set "dropdown_item_color" $skin.dropdown_item_color -}}
|
||||||
{{- $scr.Set "navbar_border_bottom_color" $theme.navbar_border_bottom_color -}}
|
{{- $scr.Set "navbar_border_bottom_color" $skin.navbar_border_bottom_color -}}
|
||||||
{{- $scr.Set "navbar_background_color" $theme.navbar_background_color -}}
|
{{- $scr.Set "navbar_background_color" $skin.navbar_background_color -}}
|
||||||
{{- $scr.Set "navbar_title_color" $theme.navbar_title_color -}}
|
{{- $scr.Set "navbar_title_color" $skin.navbar_title_color -}}
|
||||||
{{- $scr.Set "navbar_title_hover_color" $theme.navbar_title_hover_color -}}
|
{{- $scr.Set "navbar_title_hover_color" $skin.navbar_title_hover_color -}}
|
||||||
{{- $scr.Set "navbar_menu_hover_background_color" $theme.navbar_menu_hover_background_color -}}
|
{{- $scr.Set "navbar_title_active_color" $skin.navbar_title_active_color -}}
|
||||||
{{- $scr.Set "navbar_dropdown_item_hover_color" $theme.navbar_dropdown_item_hover_color -}}
|
{{- $scr.Set "navbar_menu_hover_background_color" $skin.navbar_menu_hover_background_color -}}
|
||||||
{{- $scr.Set "navbar_dropdown_item_hover_background_color" $theme.navbar_dropdown_item_hover_background_color -}}
|
{{- $scr.Set "navbar_dropdown_item_hover_color" $skin.navbar_dropdown_item_hover_color -}}
|
||||||
{{- $scr.Set "input_color" $theme.input_color -}}
|
{{- $scr.Set "navbar_dropdown_item_hover_background_color" $skin.navbar_dropdown_item_hover_background_color -}}
|
||||||
{{- $scr.Set "input_background_color" $theme.input_background_color -}}
|
{{- $scr.Set "sidebar_title_color" $skin.sidebar_title_color -}}
|
||||||
{{- $scr.Set "input_border_color" $theme.input_border_color -}}
|
{{- $scr.Set "sidebar_li_color" $skin.sidebar_li_color -}}
|
||||||
{{- $scr.Set "input_hover_border_color" $theme.input_hover_border_color -}}
|
{{- $scr.Set "taxo_title_color" $skin.taxo_title_color -}}
|
||||||
{{- $scr.Set "input_focus_border_color" $theme.input_focus_border_color -}}
|
{{- $scr.Set "taxo_tags_background_color" $skin.taxo_tags_background_color -}}
|
||||||
{{- $scr.Set "sidebar_title_color" $theme.sidebar_title_color -}}
|
{{- $scr.Set "taxo_tags_color" $skin.taxo_tags_color -}}
|
||||||
{{- $scr.Set "sidebar_li_color" $theme.sidebar_li_color -}}
|
{{- $scr.Set "taxo_series_background_color" $skin.taxo_series_background_color -}}
|
||||||
{{- $scr.Set "taxo_title_color" $theme.taxo_title_color -}}
|
{{- $scr.Set "taxo_series_color" $skin.taxo_series_color -}}
|
||||||
{{- $scr.Set "taxo_tags_background_color" $theme.taxo_tags_background_color -}}
|
{{- $scr.Set "taxo_background_color_hover" $skin.taxo_background_color_hover -}}
|
||||||
{{- $scr.Set "taxo_tags_color" $theme.taxo_tags_color -}}
|
{{- $scr.Set "taxo_categories_background_color" $skin.taxo_categories_background_color -}}
|
||||||
{{- $scr.Set "taxo_series_background_color" $theme.taxo_series_background_color -}}
|
{{- $scr.Set "taxo_categories_color" $skin.taxo_categories_color -}}
|
||||||
{{- $scr.Set "taxo_series_color" $theme.taxo_series_color -}}
|
{{- $scr.Set "breadcrumb_item_color" $skin.breadcrumb_item_color -}}
|
||||||
{{- $scr.Set "taxo_categories_background_color" $theme.taxo_categories_background_color -}}
|
{{- $scr.Set "breadcrumb_background_color" $skin.breadcrumb_background_color -}}
|
||||||
{{- $scr.Set "taxo_categories_color" $theme.taxo_categories_color -}}
|
{{- $scr.Set "breadcrumb_item_active_color" $skin.breadcrumb_item_active_color -}}
|
||||||
{{- $scr.Set "breadcrumb_item_color" $theme.breadcrumb_item_color -}}
|
{{- $scr.Set "list_header_title_color" $skin.list_header_title_color -}}
|
||||||
{{- $scr.Set "breadcrumb_background_color" $theme.breadcrumb_background_color -}}
|
{{- $scr.Set "figcaption_color" $skin.figcaption_color -}}
|
||||||
{{- $scr.Set "breadcrumb_item_active_color" $theme.breadcrumb_item_active_color -}}
|
{{- $scr.Set "figcaption_strong_color" $skin.figcaption_strong_color -}}
|
||||||
{{- $scr.Set "list_header_title_color" $theme.list_header_title_color -}}
|
{{- $scr.Set "single_hr_background_color" $skin.single_hr_background_color -}}
|
||||||
{{- $scr.Set "figcaption_color" $theme.figcaption_color -}}
|
{{- $scr.Set "single_blockquote_border_color" $skin.single_blockquote_border_color -}}
|
||||||
{{- $scr.Set "figcaption_strong_color" $theme.figcaption_strong_color -}}
|
{{- $scr.Set "single_header_title_color" $skin.single_header_title_color -}}
|
||||||
{{- $scr.Set "single_hr_background_color" $theme.single_hr_background_color -}}
|
{{- $scr.Set "single_contents_title_color" $skin.single_contents_title_color -}}
|
||||||
{{- $scr.Set "single_blockquote_border_color" $theme.single_blockquote_border_color -}}
|
{{- $scr.Set "related_header_title_color" $skin.related_header_title_color -}}
|
||||||
{{- $scr.Set "single_header_title_color" $theme.single_header_title_color -}}
|
{{- $scr.Set "related_link_color" $skin.related_link_color -}}
|
||||||
{{- $scr.Set "single_contents_title_color" $theme.single_contents_title_color -}}
|
{{- $scr.Set "content_pre_main_color" $skin.content_pre_main_color -}}
|
||||||
{{- $scr.Set "related_header_title_color" $theme.related_header_title_color -}}
|
{{- $scr.Set "content_pre_background_color" $skin.content_pre_background_color -}}
|
||||||
{{- $scr.Set "related_link_color" $theme.related_link_color -}}
|
{{- $scr.Set "content_code_color" $skin.content_code_color -}}
|
||||||
{{- $scr.Set "content_pre_main_color" $theme.content_pre_main_color -}}
|
{{- $scr.Set "content_code_background_color" $skin.content_code_background_color -}}
|
||||||
{{- $scr.Set "content_pre_background_color" $theme.content_pre_background_color -}}
|
{{- $scr.Set "burger_menu_color" $skin.burger_menu_color -}}
|
||||||
{{- $scr.Set "content_code_color" $theme.content_code_color -}}
|
{{- $scr.Set "social_icon_color" $skin.social_icon_color -}}
|
||||||
{{- $scr.Set "content_code_background_color" $theme.content_code_background_color -}}
|
{{- $scr.Set "social_icon_hover_color" $skin.social_icon_hover_color -}}
|
||||||
{{- $scr.Set "burger_menu_color" $theme.burger_menu_color -}}
|
{{- $scr.Set "pagination_link_color" $skin.pagination_link_color -}}
|
||||||
{{- $scr.Set "social_icon_color" $theme.social_icon_color -}}
|
{{- $scr.Set "pagination_background_color" $skin.pagination_background_color -}}
|
||||||
{{- $scr.Set "social_icon_hover_color" $theme.social_icon_hover_color -}}
|
{{- $scr.Set "pagination_disabled_color" $skin.pagination_disabled_color -}}
|
||||||
{{- $scr.Set "pagination_link_color" $theme.pagination_link_color -}}
|
{{- $scr.Set "pagination_number_color" $skin.pagination_number_color -}}
|
||||||
{{- $scr.Set "pagination_background_color" $theme.pagination_background_color -}}
|
{{- $scr.Set "photoswipe_hover_color" $skin.photoswipe_hover_color -}}
|
||||||
{{- $scr.Set "pagination_disabled_color" $theme.pagination_disabled_color -}}
|
{{- $scr.Set "photoswipe_color" $skin.photoswipe_color -}}
|
||||||
{{- $scr.Set "pagination_number_color" $theme.pagination_number_color -}}
|
{{- $scr.Set "photoswipe_hover_background_color" $skin.photoswipe_hover_background_color -}}
|
||||||
{{- $scr.Set "photoswipe_hover_color" $theme.photoswipe_hover_color -}}
|
{{- $scr.Set "photoswipe_background_color" $skin.photoswipe_background_color -}}
|
||||||
{{- $scr.Set "photoswipe_color" $theme.photoswipe_color -}}
|
{{- $scr.Set "terms_title_color" $skin.terms_title_color -}}
|
||||||
{{- $scr.Set "photoswipe_hover_background_color" $theme.photoswipe_hover_background_color -}}
|
{{- $scr.Set "terms_tags_color" $skin.terms_tags_color -}}
|
||||||
{{- $scr.Set "photoswipe_background_color" $theme.photoswipe_background_color -}}
|
{{- $scr.Set "terms_categories_color" $skin.terms_categories_color -}}
|
||||||
{{- $scr.Set "terms_title_color" $theme.terms_title_color -}}
|
{{- $scr.Set "terms_series_color" $skin.terms_series_color -}}
|
||||||
{{- $scr.Set "terms_tags_color" $theme.terms_tags_color -}}
|
{{- $scr.Set "terms_len_color" $skin.terms_len_color -}}
|
||||||
{{- $scr.Set "terms_categories_color" $theme.terms_categories_color -}}
|
{{- $scr.Set "toc_label_color" $skin.toc_label_color -}}
|
||||||
{{- $scr.Set "terms_series_color" $theme.terms_series_color -}}
|
{{- $scr.Set "toc_title_color" $skin.toc_title_color -}}
|
||||||
{{- $scr.Set "terms_len_color" $theme.terms_len_color -}}
|
{{- $scr.Set "toc_vertical_line" $skin.toc_vertical_line -}}
|
||||||
{{- $scr.Set "toc_label_color" $theme.toc_label_color -}}
|
{{- $scr.Set "toc_vertical_line_active" $skin.toc_vertical_line_active -}}
|
||||||
{{- $scr.Set "toc_title_color" $theme.toc_title_color -}}
|
{{- $scr.Set "search_placeholder_color" $skin.search_placeholder_color -}}
|
||||||
{{- $scr.Set "toc_vertical_line" $theme.toc_vertical_line -}}
|
{{- $scr.Set "search_color" $skin.search_color -}}
|
||||||
{{- $scr.Set "toc_vertical_line_active" $theme.toc_vertical_line_active -}}
|
{{- $scr.Set "search_icon_color" $skin.search_icon_color -}}
|
||||||
{{- $scr.Set "search_placeholder_color" $theme.search_placeholder_color -}}
|
{{- $scr.Set "search_background_color" $skin.search_background_color -}}
|
||||||
{{- $scr.Set "search_color" $theme.search_color -}}
|
{{- $scr.Set "search_content_background_color" $skin.search_content_background_color -}}
|
||||||
{{- $scr.Set "search_icon_color" $theme.search_icon_color -}}
|
{{- $scr.Set "search_hover_background_color" $skin.search_hover_background_color -}}
|
||||||
{{- $scr.Set "search_background_color" $theme.search_background_color -}}
|
{{- $scr.Set "mark_color" $skin.mark_color -}}
|
||||||
{{- $scr.Set "search_content_background_color" $theme.search_content_background_color -}}
|
{{- $scr.Set "mark_background_color" $skin.mark_background_color -}}
|
||||||
{{- $scr.Set "search_hover_background_color" $theme.search_hover_background_color -}}
|
{{- $scr.Set "archive_key_color" $skin.archive_key_color -}}
|
||||||
{{- $scr.Set "mark_color" $theme.mark_color -}}
|
{{- $scr.Set "archive_type_color" $skin.archive_type_color -}}
|
||||||
{{- $scr.Set "mark_background_color" $theme.mark_background_color -}}
|
{{- $scr.Set "archive_meta_color" $skin.archive_meta_color -}}
|
||||||
{{- $scr.Set "archive_key_color" $theme.archive_key_color -}}
|
{{- $scr.Set "archive_key_background_color" $skin.archive_key_background_color -}}
|
||||||
{{- $scr.Set "archive_type_color" $theme.archive_type_color -}}
|
{{- $scr.Set "archive_type_background_color" $skin.archive_type_background_color -}}
|
||||||
{{- $scr.Set "archive_meta_color" $theme.archive_meta_color -}}
|
{{- $scr.Set "archive_hover_line_color" $skin.archive_hover_line_color -}}
|
||||||
{{- $scr.Set "archive_key_background_color" $theme.archive_key_background_color -}}
|
|
||||||
{{- $scr.Set "archive_type_background_color" $theme.archive_type_background_color -}}
|
|
||||||
{{- $scr.Set "archive_hover_line_color" $theme.archive_hover_line_color -}}
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{{ if .IsHome }}
|
{{ if .IsHome }}
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<h1 class="h1 title">{{ .Site.Title }}</h1>
|
<h1 class="h1 title">{{ .Site.Title }}</h1>
|
||||||
</header>
|
</header>
|
||||||
{{ end }}
|
{{ end }}
|
|
@ -36,7 +36,3 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
</script>
|
|
Loading…
Reference in New Issue