added blog, feed, nextcloud post and new menu
parent
82d2f515a0
commit
d4a68853ca
@ -1,5 +1,5 @@
|
||||
- title: contact
|
||||
url: mailto:hello@socialnerds.org
|
||||
- title: cloud
|
||||
url: https://cloud.socialnerds.org
|
||||
|
||||
- title: about
|
||||
url: /about
|
||||
- title: webmail
|
||||
url: https://excelsior.socialnerds.org/mail
|
||||
|
@ -0,0 +1,8 @@
|
||||
- name: "get an account"
|
||||
url: /account
|
||||
|
||||
- name: "git repos"
|
||||
url: https://socialg.it/socialnerds
|
||||
|
||||
- name: "imprint"
|
||||
url: /imprint
|
@ -1,7 +0,0 @@
|
||||
- name: Fatso
|
||||
category: theme
|
||||
url: https://github.com/getmicah/fatso
|
||||
|
||||
- name: Beam
|
||||
category: theme
|
||||
url: https://github.com/getmicah/beam
|
@ -0,0 +1,11 @@
|
||||
|
||||
<div class="header">
|
||||
<h1>{{ site.name }}</h1>
|
||||
<ul>
|
||||
{% for item in site.data.navigation %}
|
||||
<li>
|
||||
<a href="/{{ item.url }}">{{ item.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
@ -1,13 +0,0 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
|
||||
|
||||
<div class="about">
|
||||
<a class="about__back" href="/"><-- back</a>
|
||||
<h1 class="about__title">About:</h1>
|
||||
<div class="about__content">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,12 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="post">
|
||||
<a class="post__back" href="/"><-- home</a>
|
||||
<h1 class="post__title">{{ page.title }}</h1>
|
||||
<!--<p class="post__date">{{ page.date | date: '%B %-d, %Y' }}</p>-->
|
||||
<div class="post__content"?>
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: post
|
||||
title: Hello world!
|
||||
title: Hello world
|
||||
---
|
||||
|
||||
This is some sample content.
|
||||
|
@ -0,0 +1,21 @@
|
||||
---
|
||||
layout: post
|
||||
title: Nextcloud at socialnerds.org
|
||||
---
|
||||
|
||||
Hello nerds,
|
||||
|
||||
today i'd like to introduce [Nextcloud](https://nextcloud.com). It is a fork of the open source version of [ownCloud](https://owncloud.org) with one key difference to its predecessor: There won't be a closed source edition and all the planing and development happens in the open. Also it is a Drop-in replacement for ownCloud which means, although there are [native clients](https://nextcloud.com/install/#install-clients) already available, all ownCloud branded client software will remain compatible for the time being.
|
||||
|
||||
*Read more about Nextcloud on [Wikipedia](https://en.wikipedia.org/wiki/Nextcloud) or on their [website](https://nextcloud.com).*
|
||||
|
||||
**Now it gets interesting for you:**
|
||||
Starting today we'll be using Nextcloud 10 at [cloud.socialnerds.org](https://cloud.socialnerds.org) which is supposed to completely replace our ownCloud instance at [www.socialnerds.org/cloud](https://www.socialnerds.org/cloud). The ownCloud instance will be available until the **31st of December 2016**. After that you won't be able to recover data which has not been migrated to [cloud.socialnerds.org](https://cloud.socialnerds.org).
|
||||
|
||||
For the purpose of detecting unused accounts and having a fresh database **you have to transfer your data manually** to the new cloud instance.
|
||||
|
||||
To get an account for the new cloud instance follow the instructions [here](/account).
|
||||
|
||||

|
||||
|
||||
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
layout: post
|
||||
title: gmur.ml & socialg.it downtime tomorrow
|
||||
---
|
||||
|
||||
Because of a sever migration [gmur.ml](https://gmur.ml) & [socialg.it](https://socialg.it) will be down for about two hours tomorrow **1st of November 11am**(CET).
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
layout: about
|
||||
---
|
||||
|
||||
[socialnerds.org](/) connects a couple of nerds (who do also exist in a social “real life” environment) doing interesting stuff like writing code, playing around with hardware, getting to know the latest operating systems, gaming old classics and doing whatever is fun doing with a computer (or something similar).
|
@ -0,0 +1,20 @@
|
||||
---
|
||||
layout: page
|
||||
title: how to get a socialnerds account
|
||||
---
|
||||
|
||||
|
||||
Email your public pgp key along with your desired email address to `david@socialnerds.org`. ([public key](https://keybase.io/beyond/key.asc))
|
||||
You will get an encrypted reply containing your account details within 24 hours.
|
||||
|
||||
*Available email domains: @socialnerds.org, @aundas.org*
|
||||
|
||||
|
||||
You may use following services with your account credentials:
|
||||
* Email: [webmail](https://excelsior.socialnerds.org/mail), [instructions](https://excelsior.socialnerds.org)
|
||||
* File sharing: [files](https://cloud.socialnerds.org)
|
||||
* Calendars & Contacts: [calendar](https://cloud.socialnerds.org/apps/calendar), [contacts](https://cloud.socialnerds.org/apps/contacts)
|
||||
* News reader: [news](https://cloud.socialnerds.org/apps/news)
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
---
|
||||
layout: null
|
||||
---
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>socialnerds.org</title>
|
||||
<description>Blog posts</description>
|
||||
<link>{{ site.url }}</link>
|
||||
{% for post in site.posts %}
|
||||
{% unless post.draft %}
|
||||
<item>
|
||||
<title>{{ post.title | xml_escape }}</title>
|
||||
<description>{{ post.content | xml_escape }}</description>
|
||||
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
|
||||
<link>{{ post.url | prepend: site.url }}</link>
|
||||
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
|
||||
</item>
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
</channel>
|
||||
</rss>
|
Binary file not shown.
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,9 @@
|
||||
---
|
||||
layout: page
|
||||
title: imprint
|
||||
---
|
||||
|
||||
|
||||
type `whois socialnerds.org`
|
||||
|
||||
|
Loading…
Reference in New Issue