commit adabdbe9ffa43bbde227f917082f50e5f6030195 Author: Martin/Geno Date: Fri Aug 31 01:18:19 2018 +0200 init diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9e00c4d --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/allegiant"] + path = themes/allegiant + url = https://github.com/brycematheson/allegiant diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..b7e50d5 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +type: post +image: "" +--- diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..a163ac1 --- /dev/null +++ b/config.toml @@ -0,0 +1,20 @@ +baseURL = "https://sum7.eu/" +languageCode = "en-us" +title = "Sum7" +copyright = "" +canonifyurls = true + +[params] + footer_1 = "Dezentral: What is a cloud?" + footer_2 = "Impressum: Make a DNS whois" + footer_3 = "Datenschutz: We save nothing!" + +[[menu.main]] + name = "Home" + url = "/" + weight = 1 + +[[menu.main]] + name = "All Articles" + url = "/all/" + weight = 2 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..b53e0c7 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,18 @@ +--- +title: "Home" +type: "page" +--- + +## XMPP / Chat +A public and free XMPP / Chat - Server: [chat.sum7.eu](/chat) + +## Git Hosting +A public and free GIT-Server: [dev.sum7.eu](https://dev.sum7.eu) +with Continues Integration [ci.sum7.eu](https://ci.sum7.eu) + +## FileStorage / Collaborativ Working +We run a private NextCloud (just for request). + + +## All services are reachable over [DN42](https://dn42.net) +Ask for they IP-Address under [support@conference.chat.sum7.eu](xmpp:support@conference.chat.sum7.eu?join) diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..124fefa --- /dev/null +++ b/content/about.md @@ -0,0 +1,10 @@ +--- +title: About +type: page +image: /img/plane.jpg +--- + +We are a hoster to support decentraled services. +A step away from big cloud services. + +A example, take a lock at [Chat](/chat) diff --git a/content/chat.md b/content/chat.md new file mode 100644 index 0000000..abe89df --- /dev/null +++ b/content/chat.md @@ -0,0 +1,31 @@ +--- +title: Chat +type: page +--- + +One important decentral service in the internet is xmpp / jabber. +A live transport protocol which is mostly used to chat. + +For this we host a free xmpp server for open registration under the domain **chat.sum7.eu**. + +These support all necessary extensions: + + +And support secure way to connect: +xmpp.net score + + +So it is at your to free your daily messages on your device (and encrypt then with [OMEMO](https://conversations.im/omemo/)): + +| Application | Store | +|-------------|-------| +| Pix-Art Messenger | Get it on F-Droid Get it on Google Play | +| Conversations | Get it on F-Droid Get it on Google Play | +| Dino | [Downloads](https://dino.im/#download) | +| Gajim | [Downloads for most common Desktops](https://gajim.org/downloads.php) | +| Monal | | +| ChatSecure | ChatSecure on iOS App Store | + + + +

diff --git a/content/post/init.md b/content/post/init.md new file mode 100644 index 0000000..df0127b --- /dev/null +++ b/content/post/init.md @@ -0,0 +1,7 @@ +--- +title: "First Post" +date: "2015-11-22T10:54:54-07:00" +type: post +--- + +Hallo at this Blog, where we inform you about the services on this decentral point at internet. diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..db0917d --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,7 @@ +{{ partial "header.html" . }} +
+

404

+
This page doesn't exist.
+
+{{ partial "footer.html" . }} + diff --git a/layouts/_default/li.html b/layouts/_default/li.html new file mode 100644 index 0000000..1f3fc0a --- /dev/null +++ b/layouts/_default/li.html @@ -0,0 +1,7 @@ +
+

{{ .Title }}

+ +

{{ .Summary }}

+ {{ if .Truncated }}Continue reading ↦{{ end }} +
+
\ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..4ca9906 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,11 @@ +{{ partial "header.html" . }} +
+

{{ .Title }}

+ {{ range .Data.Pages }} + {{ if eq .Type "post"}} +
+ {{ .Render "li" }} + {{ end }} + {{ end }} +
+{{ partial "footer.html" . }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..8c69b5b --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,17 @@ +{{ partial "header.html" . }} +{{ $baseurl := .Site.BaseURL }} +
+{{ if eq .Type "post"}} + +{{ end }} +
+{{ .Content }} +
+{{ if eq .Type "post"}} +
+
+{{ end }} +
+{{ partial "footer.html" . }} diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..7271713 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,8 @@ +{{ partial "header.html" . }} +{{ $baseurl := .Site.BaseURL }} +
+
+{{ .Content }} +
+
+{{ partial "footer.html" . }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..b9aea11 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,18 @@ +
+ + + + + + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..126e602 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,59 @@ + + + + + + {{ if ne .URL "/" }}{{ .Title }} · {{ end }}{{ .Site.Title }} + + + + + + +{{ if isset .Params "image" }} +