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

github.com/djuelg/Shapez-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Juelg <djuelg@gmx.de>2016-04-26 22:37:28 +0300
committerDominik Juelg <djuelg@gmx.de>2016-04-26 22:37:28 +0300
commitfd74d0dbc0216ecce08b2d18d35d431f63ea856f (patch)
tree2303d134f582ae4ab33bd24e286d8767783c9cb2
parentc98c33ab0842a3e7016e1123fba5ac5b94d58ccf (diff)
added informations for publishing
-rw-r--r--README.md5
-rw-r--r--config.toml14
-rw-r--r--content/about.md8
-rw-r--r--content/playground/01-playground.md11
-rw-r--r--content/playground/comments.md95
5 files changed, 29 insertions, 104 deletions
diff --git a/README.md b/README.md
index 784700c..4072b1c 100644
--- a/README.md
+++ b/README.md
@@ -25,8 +25,11 @@ If you want to use it feel free to do so, but be prepared to learn some SVG if y
# TODO:
- globales seiten icon
+- sidebar buttons wieder wie vorher
+- sidebar-playground ohne nav-buttons
+- playground title anders gestalten
- "Last Page" / "First Page" Lippen oder Brille
-- playground verbessern (title container)
- 404 Page (viele kleine 404 zeichen über svg)
+- seite soll nicht nach oben scrollen, wenn text layout geändert wird
- mehr Farbe in die Timeline [?] \ No newline at end of file
diff --git a/config.toml b/config.toml
index aa82e15..e244b23 100644
--- a/config.toml
+++ b/config.toml
@@ -13,17 +13,17 @@ PaginatePath = "page"
googleAnalytics = "UA-123-45"
[author]
- name = "Sample Author"
+ name = "djuelg-student"
[params]
- title_l1 = "Headline,"
- title_l2 = "wich can be very l0ng"
- subtitle_l1 = "Im am subtitle wich is not too long,"
- subtitle_l2 = "but I'm also a two-liner..."
- subtitle_l3 = "Now with a third line!"
+ title_l1 = "Shapez Theme"
+ title_l2 = ""
+ subtitle_l1 = "Shapez is a theme created for hugo"
+ subtitle_l2 = "with SVG pictures as partials."
+ subtitle_l3 = ""
# Enter links for the buttons (button one has the house sign)
- button_1 = "/#scroll-down"
+ button_1 = "/"
button_2 = "/playground/"
button_3 = "/about/"
diff --git a/content/about.md b/content/about.md
index a107a33..ef3a51a 100644
--- a/content/about.md
+++ b/content/about.md
@@ -2,4 +2,10 @@
date: 2016-04-21
title: About
weight: 70
---- \ No newline at end of file
+---
+
+The shapez theme is a theme created with [hugo](http://gohugo.io/).
+Hugo is a static site generator using markdown-files to render it's content.
+
+__Special thanks__ goes to Freepik, Daniel Bruce and Plainicon for publishing their icons at [Flaticon](http://www.flaticon.com).
+Furthermore I would like to thank the creator of the [Slender Theme](http://themes.gohugo.io/slender/), wich brought me to create my own theme - using some code of slender ;) \ No newline at end of file
diff --git a/content/playground/01-playground.md b/content/playground/01-playground.md
new file mode 100644
index 0000000..8427fc0
--- /dev/null
+++ b/content/playground/01-playground.md
@@ -0,0 +1,11 @@
+---
+lastmod: 2015-08-04
+date: 2014-05-26
+linktitle: Comments
+title: The "Playground section"
+weight: 30
+---
+
+Here you can see the "palyground"-section.
+It is used for less important content, wich isnt updated regulary and must not be in a strict structure.
+The special thing of this section is the fact, that every article is fully viewable and every article is on the same page (e.g. at `/playground/`). \ No newline at end of file
diff --git a/content/playground/comments.md b/content/playground/comments.md
deleted file mode 100644
index 0dabd1c..0000000
--- a/content/playground/comments.md
+++ /dev/null
@@ -1,95 +0,0 @@
----
-lastmod: 2015-08-04
-date: 2014-05-26
-linktitle: Comments
-menu:
- main:
- parent: extras
-next: /extras/crossreferences
-prev: /extras/builders
-title: Comments in Hugo
-weight: 30
----
-
-As Hugo is a static site generator, the content produced is static and doesn’t interact with the users. The most common interaction people ask for is comment capability.
-
-Hugo ships with support for [Disqus](https://disqus.com/), a third-party service that provides comment and community capabilities to website via JavaScript.
-
-Your theme may already support Disqus, but even it if doesn’t, it is easy to add.
-
-# Disqus Support
-
-## Adding Disqus to a template
-
-Hugo comes with all the code you would need to include load Disqus. Simply include the following line where you want your comments to appear:
-
- {{ template "_internal/disqus.html" . }}
-
-## Configuring Disqus
-
-That template requires you to set a single value in your site config file, e.g. config.yaml.
-
- disqusShortname = "XYW"
-
-Additionally, you can optionally set the following in the front matter
-for a given piece of content:
-
- * **disqus_identifier**
- * **disqus_title**
- * **disqus_url**
-
-## Conditional Loading of Disqus Comments
-
-Users have noticed that enabling Disqus comments when running the Hugo web server on localhost causes the creation of unwanted discussions on the associated Disqus account. In order to prevent this, a slightly tweaked partial template is required. So, rather than using the built-in `"_internal/disqus.html"` template referenced above, create a template in your `partials` folder that looks like this:
-
-```html
-<div id="disqus_thread"></div>
-<script type="text/javascript">
-
-(function() {
- // Don't ever inject Disqus on localhost--it creates unwanted
- // discussions from 'localhost:1313' on your Disqus account...
- if (window.location.hostname == "localhost")
- return;
-
- var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
- var disqus_shortname = '{{ .Site.DisqusShortname }}';
- dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
-})();
-</script>
-<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
-<a href="http://disqus.com/" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
-```
-
-Notice that there is a simple `if` statement that detects when you are running on localhost and skips the initialization of the Disqus comment injection.
-
-Now, reference the partial template from your page template:
-
- {{ partial "disqus.html" . }}
-
-
-# Alternatives
-
-A few alternatives exist to [Disqus](https://disqus.com/):
-
-* [Discourse](http://www.discourse.org)
-* [IntenseDebate](http://intensedebate.com/)
-* [Livefyre](http://livefyre.com/)
-* [Muut](http://muut.com/)
-* [多说](http://duoshuo.com/) ([Duoshuo](http://duoshuo.com/), popular in China)
-* [isso](http://posativ.org/isso/) (Self-hosted, Python)
-* [Kaiju](https://github.com/spf13/kaiju)
-
-## Kaiju
-
-[Kaiju](https://github.com/spf13/kaiju) is an open-source project started by [spf13](http://spf13.com/) (Hugo’s author) to bring easy and fast real time discussions to the web.
-
-Written using Go, Socket.io and MongoDB, it is very fast and easy to deploy.
-
-It is in early development but shows promise. If you have interest, please help by contributing whether via a pull request, an issue or even just a tweet. Everything helps.
-
-## Discourse
-
-Additionally, you may recognize [Discourse](http://www.discourse.org) as the system that powers the [Hugo Discussion Forum](http://discuss.gohugo.io).
-