From 24aeaa8ea71831072243f0705e7ff78560c1cacb Mon Sep 17 00:00:00 2001 From: mblum Date: Tue, 4 Jul 2017 19:34:06 -0500 Subject: themes.gohugo.io requirements --- .gitmodules | 3 + exampleSite/config.yaml | 25 + exampleSite/content/dashboard/blog.md | 6 + exampleSite/content/post/sample.md | 20 + exampleSite/content/project/hugo-now.md | 9 + exampleSite/static/images/hugo-logo.svg | 217 +++++ exampleSite/static/images/hugo-now.png | Bin 0 -> 7823 bytes exampleSite/static/images/hugo-now.svg | 1421 +++++++++++++++++++++++++++++++ exampleSite/static/images/hugo.png | Bin 0 -> 18210 bytes exampleSite/themes/hugo-now | 1 + layouts/partials/nav.html | 2 +- static/images/screenshot.png | Bin 0 -> 135518 bytes static/images/tn.png | Bin 0 -> 106499 bytes theme.toml | 4 +- 14 files changed, 1705 insertions(+), 3 deletions(-) create mode 100644 .gitmodules create mode 100644 exampleSite/config.yaml create mode 100644 exampleSite/content/dashboard/blog.md create mode 100644 exampleSite/content/post/sample.md create mode 100644 exampleSite/content/project/hugo-now.md create mode 100644 exampleSite/static/images/hugo-logo.svg create mode 100644 exampleSite/static/images/hugo-now.png create mode 100644 exampleSite/static/images/hugo-now.svg create mode 100644 exampleSite/static/images/hugo.png create mode 160000 exampleSite/themes/hugo-now create mode 100644 static/images/screenshot.png create mode 100644 static/images/tn.png diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..235f0b2 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "exampleSite/themes/hugo-now"] + path = exampleSite/themes/hugo-now + url = git@github.com:mikeblum/hugo-now.git diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml new file mode 100644 index 0000000..c68d0a7 --- /dev/null +++ b/exampleSite/config.yaml @@ -0,0 +1,25 @@ +--- +baseurl: "http://example.org/" +languageCode: en +title: My New Hugo Site +# theme +theme: "hugo-now" + +taxonomies: + category: "categories" + tag: "tags" + +params: + description: Hugo port of Jekyll Now + author: Hugo Now + keywords: ["hugo-now", "hugo"] + avatar: /images/hugo.png + displayauthor: false + # pygments + PygmentsUseClasses: true + PygmentsCodeFences: true + # pagination + paginate: 10 + paginatePath: page + # google analytics + # GoogleAnalytics: UA-XXXXXX \ No newline at end of file diff --git a/exampleSite/content/dashboard/blog.md b/exampleSite/content/dashboard/blog.md new file mode 100644 index 0000000..6a8ff2c --- /dev/null +++ b/exampleSite/content/dashboard/blog.md @@ -0,0 +1,6 @@ +--- +title: "Blog" +date: 2017-07-03T15:21:37-05:00 +slug: /blog +tags: ["dashboard", "blog"] +--- \ No newline at end of file diff --git a/exampleSite/content/post/sample.md b/exampleSite/content/post/sample.md new file mode 100644 index 0000000..8636269 --- /dev/null +++ b/exampleSite/content/post/sample.md @@ -0,0 +1,20 @@ +--- +title: "Sample Post" +date: 2017-07-04T19:54:29-05:00 +tags: ["blog", "post"] +--- + +
+ hugo logo +
+ + + + +--- + + + +[Section A](#Section-A) | [Section B](#Section-B) \ No newline at end of file diff --git a/exampleSite/content/project/hugo-now.md b/exampleSite/content/project/hugo-now.md new file mode 100644 index 0000000..ec3fbfe --- /dev/null +++ b/exampleSite/content/project/hugo-now.md @@ -0,0 +1,9 @@ +--- +title: "Hugo Now" +date: 2017-07-03T20:43:15-05:00 +tags: [hugo, hugo-blog-theme, hugo-theme] +description: "A Hugo port of Jekyll Now" +repo: "https://github.com/mikeblum/hugo-now" +website: "https://mblum.me" +image: "/images/hugo-now.svg" +--- \ No newline at end of file diff --git a/exampleSite/static/images/hugo-logo.svg b/exampleSite/static/images/hugo-logo.svg new file mode 100644 index 0000000..6265426 --- /dev/null +++ b/exampleSite/static/images/hugo-logo.svg @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/exampleSite/static/images/hugo-now.png b/exampleSite/static/images/hugo-now.png new file mode 100644 index 0000000..1a2a6ab Binary files /dev/null and b/exampleSite/static/images/hugo-now.png differ diff --git a/exampleSite/static/images/hugo-now.svg b/exampleSite/static/images/hugo-now.svg new file mode 100644 index 0000000..1eb0aa6 --- /dev/null +++ b/exampleSite/static/images/hugo-now.svg @@ -0,0 +1,1421 @@ + + + + + + + + + + + + + + + + + + + + +N +O +W + diff --git a/exampleSite/static/images/hugo.png b/exampleSite/static/images/hugo.png new file mode 100644 index 0000000..48acf34 Binary files /dev/null and b/exampleSite/static/images/hugo.png differ diff --git a/exampleSite/themes/hugo-now b/exampleSite/themes/hugo-now new file mode 160000 index 0000000..4d1f1e9 --- /dev/null +++ b/exampleSite/themes/hugo-now @@ -0,0 +1 @@ +Subproject commit 4d1f1e907cc842a1db4c7f89068ce5bf7d1c833d diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html index d6d55bc..ad0a179 100644 --- a/layouts/partials/nav.html +++ b/layouts/partials/nav.html @@ -4,7 +4,7 @@
-

{{ .Site.Params.author }}

+

{{ .Site.Params.title }}

{{ .Site.Params.description }}

diff --git a/static/images/screenshot.png b/static/images/screenshot.png new file mode 100644 index 0000000..9118078 Binary files /dev/null and b/static/images/screenshot.png differ diff --git a/static/images/tn.png b/static/images/tn.png new file mode 100644 index 0000000..bb384ce Binary files /dev/null and b/static/images/tn.png differ diff --git a/theme.toml b/theme.toml index 10c2a6c..028b4f9 100644 --- a/theme.toml +++ b/theme.toml @@ -7,8 +7,8 @@ licenselink = "https://github.com/mikeblum/hugo-now/blob/master/LICENSE.md" description = "a Hugo port of Jekyll Now" homepage = "http://siteforthistheme.com/" tags = [blog, profile, jekyll-now, bootstrap, font awesome, responsive, pygments] -features = [tags, blog, portfolio] -min_version = "0.24.1" +features = [blog, portfolio] +min_version = 0.24 [author] name = "Michael Blum" -- cgit v1.2.3