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

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis Timson <curt@live.co.uk>2018-02-25 14:57:29 +0300
committerGitHub <noreply@github.com>2018-02-25 14:57:29 +0300
commit1d3853829fa00db0b3bb77e1cce0b1ee62d2664c (patch)
treee969d504b85ef64f853729989511fbafe60e4919
parent363d8785d3d61538b5b64b2ad5f43c4d43458c38 (diff)
parentc53f3633c72bf3ea6722e3241169dd8a94b70ca9 (diff)
Merge pull request #8 from curttimson/hugo-themes0.4.0
Hugo themes
-rw-r--r--LICENSE5
-rw-r--r--README.md39
-rw-r--r--theme.toml18
3 files changed, 59 insertions, 3 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e2fad80
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,5 @@
+# License
+
+This hugo theme is licensed under the [Creative Commons Attribution 3.0 License](https://creativecommons.org/licenses/by/3.0/).
+
+https://html5up.net/license \ No newline at end of file
diff --git a/README.md b/README.md
index 8e11117..5e2a6a3 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,42 @@
-# hugo-theme-massively
-HTML5 UP theme Massively for Hugo
+# Hugo Theme Massively
+
+Massively theme ported from [HTML5 UP](https://html5up.net/) for use with the [Hugo static site generator](https://gohugo.io/).
+
+## Demo
+
+https://curttimson.github.io/hugo-theme-massively/
+
+## Setup
+
+### Configuration
+
+See the demo's configuration as an example:
+
+https://github.com/curttimson/hugo-theme-massively/blob/master/exampleSite/config-prod.toml
+
+### Cover Image
+
+The cover image URL is hard-coded, therefore to replace this add an image to the following location in your Hugo application:
+
+```
+/static/images/bg.jpg
+```
+
+## Development
### Example Site Deployment
```
$ hugo --config config-prod.toml
$ gulp deploy
-``` \ No newline at end of file
+```
+
+## Original Theme Credits
+
+ - [Massively by HTML5 UP](https://html5up.net/massively)
+
+ ## License
+
+This hugo theme is licensed under the [Creative Commons Attribution 3.0 License](https://creativecommons.org/licenses/by/3.0/).
+
+Read More - [LICENSE](LICENSE)
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..29bdf4d
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,18 @@
+name = "Massively"
+license = "Creative Commons"
+licenselink = "https://github.com/curttimson/hugo-theme-massively/blob/master/LICENSE"
+description = "An elegant open-source and mobile-first theme"
+homepage = "https://html5up.net/uploads/demos/massively/index.html"
+tags = ["blog", "html5up"]
+features = ["blog"]
+min_version = 0.19
+
+[author]
+ name = "Curtis Timson"
+ homepage = "https://curtistimson.co.uk/"
+
+# If porting an existing theme
+[original]
+ author = "HTML5UP"
+ homepage = "https://html5up.net"
+ repo = "https://html5up.net/massively" \ No newline at end of file