Update Mastodon, GNU Social, Hubzilla pages

This commit is contained in:
lostinlight 2018-05-15 06:30:21 +03:00
parent 5d05933dc2
commit 84fbbfb558
8 changed files with 37 additions and 8 deletions

View File

@ -46,6 +46,11 @@
"name": "FSFE",
"url": "https://quitter.no/fsfe",
"avatar": "/img/avatars/fsfe.png"
},
{
"name": "Umea hackerspace",
"url": "https://social.umeahackerspace.se/blog",
"avatar": "/img/avatars/umea.png"
}
],
"communities": "http://laemeur.sdf.org/gs/group-index.html",

View File

@ -27,6 +27,10 @@
],
"devTutorials": "https://github.com/redmatrix/hubzilla/wiki/Deploying-Hubzilla#install-and-set-up-the-basics",
"cheatsheets":
[
{"id": "0", "url": "/img/hubzilla-permissions.png"}
],
"notable": "",
"communities": "https://hub.libranet.de/directory?f=&global=1&pubforums=1",
"tracker": "https://github.com/redmatrix/hubzilla/issues",

View File

@ -126,14 +126,9 @@
"avatar": "/img/avatars/tutanota.png"
},
{
"name": "KDE",
"url": "https://mastodon.technology/@kde",
"avatar": "/img/avatars/kde.png"
},
{
"name": "Matrix",
"url": "https://mastodon.matrix.org/@matrix",
"avatar": "/img/avatars/matrix.png"
"name": "Yale Privacy Lab",
"url": "https://mastodon.social/@privacylab",
"avatar": "/img/avatars/yale-privacylab.png"
},
{
"name": "Doorbraak",
@ -165,6 +160,16 @@
"url": "https://infosec.exchange/@dallas_hackers",
"avatar": "/img/avatars/dallas_h.png"
},
{
"name": "KDE",
"url": "https://mastodon.technology/@kde",
"avatar": "/img/avatars/kde.png"
},
{
"name": "Matrix",
"url": "https://mastodon.matrix.org/@matrix",
"avatar": "/img/avatars/matrix.png"
},
{
"name": "Fairphone",
"url": "https://social.weho.st/@Fairphone",

BIN
source/img/avatars/umea.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -65,6 +65,7 @@ mobapps: mobile apps
tuts: tutorials
utilities: utilities
forks: forks
cheatsheets: cheat sheets
total: population
servers: servers
accounts: accounts
@ -118,6 +119,7 @@ selfhost: Self-hosting Friendica
memberGuide: Member guide
adminGuide: Administrator guide
channel: Personal channels
permissions: Channel permissions and roles cheatsheet
#Pleroma page
ownInstance: Setting up your instance

View File

@ -6,7 +6,9 @@ layout: layout
<%
const data = site.data.hubzilla.data;
const tutorials = data.tutorials;
const cheatsheets = data.cheatsheets;
const tuts = [__('memberGuide'), __('adminGuide'), __('channel')];
const sheets = [__('permissions')];
%>
<%- partial('_partial/heroheader') %>
@ -35,6 +37,17 @@ layout: layout
<% } %>
</ul>
</div>
<div class="section u-block">
<h4><%- __('cheatsheets') %></h4>
<ul class="section-list">
<% for (item in cheatsheets) { %>
<% let n = cheatsheets[item].id %>
<li class="u-inline">
<a href="<%= cheatsheets[item].url %>"><%= sheets[n] %></a><span>&nbsp/&nbsp;</span>
</li>
<% } %>
</ul>
</div>
</section>
</div>