mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2025-02-02 22:26:39 +00:00
Update Misskey page with added data
This commit is contained in:
parent
93aa644817
commit
192258a519
|
@ -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",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
---
|
||||
layout: "generic"
|
||||
layout: "misskey"
|
||||
title: "Misskey"
|
||||
network: "misskey"
|
||||
subtitle: "sophisticated micro blogging"
|
||||
|
|
35
themes/starter/layout/misskey.ejs
Normal file
35
themes/starter/layout/misskey.ejs
Normal 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>
|
Loading…
Reference in a new issue