mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-21 16:11:28 +00:00
Update Mastodon, GNU Social, Hubzilla pages
This commit is contained in:
parent
5d05933dc2
commit
84fbbfb558
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
BIN
source/img/avatars/umea.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
BIN
source/img/avatars/yale-privacylab.png
Normal file
BIN
source/img/avatars/yale-privacylab.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
BIN
source/img/hubzilla-permissions.png
Normal file
BIN
source/img/hubzilla-permissions.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
|
@ -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
|
||||
|
|
|
@ -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> / </span>
|
||||
</li>
|
||||
<% } %>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue