From e1a4df05e8607090d012eb806fd47f58b46e7f0e Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Wed, 3 Sep 2014 18:47:06 -0600 Subject: Use `partial` call to include partial templates Replace `template` call with the `partial` call (new in Hugo v0.12) for including partial templates --- layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layouts/_default/single.html') diff --git a/layouts/_default/single.html b/layouts/_default/single.html index e0b2f94..61d009d 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,7 +1,7 @@ -{{ template "theme/partials/head.html" . }} +{{ partial "head.html" . }} -{{ template "theme/partials/sidebar.html" . }} +{{ partial "sidebar.html" . }}
-- cgit 1.4.1 From 00eb7169f6062b041e4aa8402b96fce39ce0aa16 Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Tue, 2 Jun 2015 19:14:54 +0200 Subject: Added an option change the theme globally in the configs --- README.md | 19 ++++++++++++++----- layouts/_default/list.html | 2 +- layouts/_default/single.html | 2 +- layouts/index.html | 1 - 4 files changed, 16 insertions(+), 8 deletions(-) (limited to 'layouts/_default/single.html') diff --git a/README.md b/README.md index 2502796..3233a15 100644 --- a/README.md +++ b/README.md @@ -60,12 +60,21 @@ There are eight themes available at this time. ![Hyde theme classes](https://f.cloud.github.com/assets/98681/1817044/e5b0ec06-6f68-11e3-83d7-acd1942797a1.png) -To use a theme, add anyone of the available theme classes to the `` element in the `default.html` layout, like so: +To use a theme, add the `themeColor` variable under `params``, like so: -```html - - ... - +**TOML** +```toml +theme = "hyde" + +[params] + themeColor = "theme-base-09" +``` + +**YAML** +``` +theme: "hyde" +params: + themeColor: "theme-base-09" ``` To create your own theme, look to the Themes section of [included CSS file](https://github.com/poole/hyde/blob/master/public/css/hyde.css). Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors. diff --git a/layouts/_default/list.html b/layouts/_default/list.html index f19a26f..23d4afc 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ partial "head.html" . }} - + {{ partial "sidebar.html" . }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 61d009d..9f4f603 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,5 +1,5 @@ {{ partial "head.html" . }} - + {{ partial "sidebar.html" . }} diff --git a/layouts/index.html b/layouts/index.html index b26cdf5..468244b 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,5 +1,4 @@ {{ partial "head.html" . }} - {{ partial "sidebar.html" . }} -- cgit 1.4.1 From 62ef2ef06f36bccddecaffc9567898899c29036d Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Fri, 17 Jul 2015 12:21:50 +0200 Subject: Added Disqus support --- README.md | 17 +++++++++++++++++ layouts/_default/single.html | 24 ++++++++++++++---------- layouts/partials/disqus.html | 14 ++++++++++++++ 3 files changed, 45 insertions(+), 10 deletions(-) create mode 100644 layouts/partials/disqus.html (limited to 'layouts/_default/single.html') diff --git a/README.md b/README.md index 0ddc6d5..70a57ec 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ It pairs a prominent sidebar with uncomplicated content. - [Sticky sidebar content](#sticky-sidebar-content) - [Themes](#themes) - [Reverse layout](#reverse-layout) + - [Disqus](#disqus) - [Development](#development) - [Author](#author) - [Ported by](#ported-by) @@ -92,6 +93,22 @@ Hyde's page orientation can be reversed with a single class. ``` +### Disqus + +You can optionally enable a comment system powered by Disqus for the posts. Simply add the variable `disqusShortname` to the `params` in your config file. + +**TOML** +```toml +[params] + disqusShortname = "spf13" +``` + +**YAML** +```yaml +params: + disqusShortname: "spf13" +``` + ## Author **Mark Otto** - diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 9f4f603..6bd2524 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,15 +1,19 @@ -{{ partial "head.html" . }} - + {{ partial "head.html" . }} + + {{ partial "sidebar.html" . }} -{{ partial "sidebar.html" . }} +
+
+

{{ .Title }}

+ + {{ .Content }} +
-
-
-

{{ .Title }}

- - {{ .Content }} -
-
+ {{ if and (isset .Site.Params "disqusShortname") (ne .Site.Params.disqusShortname "") }} +

Comments

+ {{ partial "disqus" . }} + {{ end }} +
diff --git a/layouts/partials/disqus.html b/layouts/partials/disqus.html new file mode 100644 index 0000000..323ae04 --- /dev/null +++ b/layouts/partials/disqus.html @@ -0,0 +1,14 @@ +
+ + +
\ No newline at end of file -- cgit 1.4.1 From dbf82dbcff55348edc6825216208d1ed0d78dcc7 Mon Sep 17 00:00:00 2001 From: Jason Yee Date: Fri, 22 Apr 2016 20:01:32 -0700 Subject: Add layout-reverse body class code to single and list templates. --- layouts/_default/list.html | 2 +- layouts/_default/single.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'layouts/_default/single.html') diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 23d4afc..7659d47 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ partial "head.html" . }} - + {{ partial "sidebar.html" . }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 6bd2524..96c9f94 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,5 +1,5 @@ {{ partial "head.html" . }} - + {{ partial "sidebar.html" . }}
-- cgit 1.4.1