Update Misskey page with added data

This commit is contained in:
lostinlight 2022-07-21 01:11:10 +03:00
parent 93aa644817
commit 192258a519
3 changed files with 39 additions and 4 deletions

View File

@ -27,9 +27,9 @@
"devTutorial": "https://misskey-hub.net/en/docs/install.html",
"forks":
[
{"id": "0", "url": "https://codeberg.org/thatonecalculator/calckey", "descr": "Calckey - fork with many requested community features"},
{"id": "1", "url": "https://akkoma.dev/FoundKeyGang/FoundKey", "descr": "Foundkey - fork that aims to remove bloat from Misskey"},
{"id": "2", "url": "https://github.com/mei23/misskey", "descr": "Meiskey - actively developed fork of Misskey v11"}
{"id": "0", "url": "https://codeberg.org/thatonecalculator/calckey", "descr": "Calckey - fork with requested community features"},
{"id": "1", "url": "https://akkoma.dev/FoundKeyGang/FoundKey", "descr": "Foundkey - fork that removes bloat from Misskey"},
{"id": "2", "url": "https://github.com/mei23/misskey", "descr": "Meiskey - actively developed fork v11"}
],
"mascot": [{"item": "藍 (Ai)", "imgNum": "1"}],
"dwellers": "Miskist",

View File

@ -1,6 +1,6 @@
---
layout: "generic"
layout: "misskey"
title: "Misskey"
network: "misskey"
subtitle: "sophisticated micro blogging"

View File

@ -0,0 +1,35 @@
---
layout: layout
network: true
---
<%
const url = getPath();
const data = site.data[url].data;
const file = '_partial/networks/' + url;
%>
<%- partial('_partial/heroheader') %>
<main class="contents">
<%- partial('_partial/header') %>
<div class="section-wrapper">
<%- partial('_partial/generalinfo') %>
<section class="column">
<div class="section u-block inline-items">
<h4><%- __('forks') %></h4>
<ul class="section-list">
<% for (item in data.forks) { %>
<li>
<a href="<%= data.forks[item].url %>"><%= data.forks[item].descr %></a>
</li>
<% } %>
</ul>
</div>
</section>
</div>
<%- partial('_partial/world') %>
<br>
<%- partial('_partial/contributing') %>
<%- partial('_partial/buttons') %>
</main>