From 1bb55442b7f7cecc25f4fe8616f8a6a4e581ed91 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Fri, 6 Sep 2019 19:41:25 +0200 Subject: [PATCH] Update index --- .gitignore | 1 + content/_index.md | 23 +++++++++++++++++++++++ content/index.md | 20 -------------------- layouts/index.html | 21 +++++++++++++++++++++ 4 files changed, 45 insertions(+), 20 deletions(-) create mode 100644 .gitignore create mode 100644 content/_index.md delete mode 100644 content/index.md create mode 100644 layouts/index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..364fdec --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..4b7f09e --- /dev/null +++ b/content/_index.md @@ -0,0 +1,23 @@ +--- +title: "Mercury IM - A Freedom Respecting Messenger" +date: 2019-09-06 +draft: false +--- + +Mercury IM began as a small hobby project. The goal was to see how easy it would be to create a fully functioning messaging client for Android. + +## Guiding Principles + +You have the right to freedom! Mercury IM empowers you by granting you the 4 freedoms of free software: The right to *use*, *study*, *share* and *improve* it. + +Thats why Mercury IM is licensed under the [GNU General Public License Version 3](https://www.gnu.org/licenses/gpl-3.0.en.html) or later to guarantee that it will forever be free software that respects your rights. + +Furthermore Mercury IM does not try to lock you in in any way. If you don't like the app you deserve to be able to use something else without losing all your contacts. + +For that reason Mercury IM did not reinvent the wheel but is build on top of the openly developed [XMPP protocol standard](https://xmpp.org/). That way the inner workings of the app are not kept a secret and everybody is able to build a compatible app. In fact, there is a wide range of compatible messenger apps for many platforms out there already! + +# Coming Soon! + +Mercury IM is still in the earliest state of development, so you gonna have to wait a little longer :) +Soon though the repository will be made public so that anyone can join the community! + diff --git a/content/index.md b/content/index.md deleted file mode 100644 index 202217d..0000000 --- a/content/index.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "Mercury IM - A Freedom Respecting Messenger" -date: 2019-09-06 -draft: false ---- - -Mercury IM began as a small hobby project. The goal was to see how easy it would be to create a fully functioning messaging client for Android. - -## Guiding Principles - -You have the right for freedom. Mercury IM tries to empower you by granting you the 4 freedoms of free software: The right to *use*, *study*, *share* and *improve* it. - -Thats why Mercury IM is licensed under the [GNU General Public License Version 3](https://www.gnu.org/licenses/gpl-3.0.en.html) or later to guarantee that it will forever be free software. - -On top of this Mercury IM does not try to lock you in in any way. If you don't like the app you should be able to use something else without losing all your contacts. - -For that reason Mercury IM is build on top of the openly developed [XMPP protocol](https://xmpp.org/). That way the inner workings of the app are not kept secret and everybody is able to build a compatible app. In fact, there is a wide range of compatible messenger apps for many platforms out there already! - -## Design Choices - diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..6426707 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,21 @@ + +{{ define "main" }} +
+
+

{{.Title}}

+ {{ with .Params.subtitle }} + {{.}} + {{ end }} +
+
+ + {{.Content}} +
+
+ + {{ range first 10 .Pages }} + {{ .Render "summary"}} + {{ end }} +
+
+{{ end }}