Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gyorb/hugo-dusk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyorgy Orban <o.gyorgy@gmail.com>2017-04-22 16:33:37 +0300
committerGyorgy Orban <o.gyorgy@gmail.com>2017-04-22 16:34:03 +0300
commit01b9311773bffa3404e1f1d9f16711fab73978fe (patch)
treee08e38c348ddabc9cc943ed448434205c4f84a30 /README.md
initial hugo themev1.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md67
1 files changed, 67 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..a864fd4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,67 @@
+Simple minimalistic dark theme for [Hugo](https://gohugo.io/).
+
+![screenshot](https://github.com/gyorb/hugo-dusk/blob/master/images/tn.png "screenshot")
+
+## Features
+
+* Responsive minimalistic design
+* Syntax highlight with [highlight.js](https://highlightjs.org/)
+* [OpenGraph](http://ogp.me/), [Twitter cards](https://dev.twitter.com/cards/overview) support
+* [Disqus](https://disqus.com/) comments support
+* [Google analytics](https://www.google.com/analytics/) (async)
+* Configrable pagination for posts
+* Lazy menu
+* Custom 404 page
+
+## Installation
+
+~~~sh
+$ mkdir themes
+$ cd themes
+$ git clone https://github.com/gyorb/hugo-dusk
+~~~
+
+## Configuration
+
+Example configuration:
+
+~~~~toml
+baseurl = "/"
+title = "My site."
+copyright = "Copyright (c) 2017, all rights reserved."
+canonifyurls = true
+languageCode = "en-US"
+paginate = 3
+theme = "hugo-dusk"
+
+googleAnalytics = ""
+disqusShortname = ""
+
+[author]
+ name = ""
+
+SectionPagesMenu = "main"
+
+[[menu.main]]
+ name = "Posts"
+ weight = -120
+ identifier = "post"
+ url = "/post/"
+
+[[menu.main]]
+ name = "Tags"
+ weight = -110
+ identifier = "tag"
+ url = "/tags/"
+
+[params.meta]
+ keywords = "blog, tech"
+ description = "Personal blog."
+
+[params]
+ github = "github id"
+ gitlab = "gitlab id"
+ twitter = "twitter id"
+ linkedin = "linkedin id"
+ email = "myemail"
+~~~~