Update index

This commit is contained in:
Paul Schaub 2019-09-06 19:41:25 +02:00
parent 31714be882
commit 1bb55442b7
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 45 additions and 20 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public/

23
content/_index.md Normal file
View File

@ -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!

View File

@ -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

21
layouts/index.html Normal file
View File

@ -0,0 +1,21 @@
{{ define "main" }}
<main aria-role="main">
<header class="homepage-header">
<h1>{{.Title}}</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{.}}</span>
{{ end }}
</header>
<div class="homepage-content">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
{{.Content}}
</div>
<div>
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
{{ range first 10 .Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
</main>
{{ end }}