Number, link updates

This commit is contained in:
lostinlight 2019-03-01 18:17:56 +03:00
parent b77a4d3b0f
commit f93dce0445
4 changed files with 34 additions and 32 deletions

View File

@ -2,72 +2,72 @@
{ {
"list": "list":
{ {
"lastUpdate": "20/02/19", "lastUpdate": "01/03/19",
"diaspora": "diaspora":
{ {
"population": "678.314", "population": "682.071",
"activeUsers": "70.724", "activeUsers": "74.115",
"podsNum": "298" "podsNum": "284"
}, },
"friendica": "friendica":
{ {
"population": "14.250", "population": "14.196",
"activeUsers": "2.382", "activeUsers": "2.438",
"podsNum": "375" "podsNum": "376"
}, },
"hubzilla": "hubzilla":
{ {
"population": "6.508", "population": "6.230",
"activeUsers": "3.980", "activeUsers": "4.052",
"podsNum": "250" "podsNum": "248"
}, },
"ganggo": "ganggo":
{ {
"population": "225", "population": "227",
"activeUsers": "121", "activeUsers": "119",
"podsNum": "3" "podsNum": "3"
}, },
"socialhome": "socialhome":
{ {
"population": "962", "population": "972",
"activeUsers": "366", "activeUsers": "364",
"podsNum": "5" "podsNum": "5"
}, },
"mastodon": "mastodon":
{ {
"population": "1.973.994", "population": "2.048.273",
"activeUsers": "1.309.463", "activeUsers": "1.009.590",
"podsNum": "2.689" "podsNum": "2.673"
}, },
"gnusocial": "gnusocial":
{ {
"population": "12.981", "population": "12.982",
"activeUsers": "", "activeUsers": "",
"podsNum": "140" "podsNum": "141"
}, },
"pleroma": "pleroma":
{ {
"population": "11.248", "population": "12.516",
"activeUsers": "", "activeUsers": "",
"podsNum": "446" "podsNum": "457"
}, },
"misskey": "misskey":
{ {
"population": "1.070", "population": "766",
"activeUsers": "", "activeUsers": "",
"podsNum": "43" "podsNum": "47"
}, },
"peertube": "peertube":
{ {
"population": "12.271", "population": "12.708",
"activeUsers": "", "activeUsers": "",
"podsNum": "308" "podsNum": "311"
}, },
"pixelfed": "pixelfed":
{ {
"population": "7.200", "population": "7.351",
"activeUsers": "3.948", "activeUsers": "3.858",
"podsNum": "37" "podsNum": "39"
} }
} }
} }

View File

@ -30,7 +30,8 @@
"tutorials": "tutorials":
[ [
{"id": "0", "url": "https://i2p.rocks/blog/the-magical-world-of-pleroma-setting-up-your-instance.html"}, {"id": "0", "url": "https://i2p.rocks/blog/the-magical-world-of-pleroma-setting-up-your-instance.html"},
{"id": "1", "url": "https://git.pleroma.social/pleroma/pleroma-fe/wikis/dual-boot-with-qvitter"} {"id": "1", "url": "https://git.pleroma.social/pleroma/pleroma-fe/wikis/dual-boot-with-qvitter"},
{"id": "2", "url": "https://github.com/wimvanderbauwhede/limited-systems/wiki/Pleroma-and-Mastodon-on-the-Raspberry-Pi-3"}
], ],
"devTutorials": "https://git.pleroma.social/pleroma/pleroma/wikis/home", "devTutorials": "https://git.pleroma.social/pleroma/pleroma/wikis/home",
"mascot": [{"item": "?"}], "mascot": [{"item": "?"}],

View File

@ -132,6 +132,7 @@ permissions: Channel permissions and roles cheatsheet
#Pleroma page #Pleroma page
ownInstance: Setting up your instance ownInstance: Setting up your instance
dualQuitter: Dual boot with qvitter dualQuitter: Dual boot with qvitter
plRP3: Pleroma on Raspberry Pi 3
# Contributing partial # Contributing partial
foreword: Please, keep in mind that you are a participant, not a customer. foreword: Please, keep in mind that you are a participant, not a customer.

View File

@ -6,7 +6,7 @@ layout: layout
<% <%
const data = site.data.pleroma.data; const data = site.data.pleroma.data;
const tutorials = data.tutorials; const tutorials = data.tutorials;
const tuts = [__('ownInstance'), __('dualQuitter')]; const tuts = [__('ownInstance'), __('dualQuitter'), __('plRP3')];
const ux = data.forUsers; const ux = data.forUsers;
const uxList = [ __('uMatch')]; const uxList = [ __('uMatch')];
%> %>
@ -36,8 +36,8 @@ layout: layout
<ul class="section-list"> <ul class="section-list">
<% for (item in tutorials) { %> <% for (item in tutorials) { %>
<% let n = tutorials[item].id %> <% let n = tutorials[item].id %>
<li class="u-inline"> <li>
<a href="<%= tutorials[item].url %>"><%= tuts[n] %></a><span>&nbsp;/&nbsp;</span> <a href="<%= tutorials[item].url %>"><%= tuts[n] %></a>
</li> </li>
<% } %> <% } %>
</ul> </ul>