mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-16 05:43:16 +00:00
40 lines
842 B
Plaintext
40 lines
842 B
Plaintext
|
|
---
|
|
layout: layout
|
|
---
|
|
|
|
<%
|
|
const data = site.data.peertube.data;
|
|
const servers = data.servers;
|
|
%>
|
|
|
|
<%- partial('_partial/heroheader') %>
|
|
|
|
<main class="contents network">
|
|
|
|
<%- partial('_partial/header') %>
|
|
|
|
<div class="section-wrapper">
|
|
<%- partial('_partial/generalinfo') %>
|
|
|
|
<section class="column">
|
|
<div class="section u-block">
|
|
<h4><%- __('join') %></h4>
|
|
<ul class="section-list">
|
|
<% for (item in servers) { %>
|
|
<li class="u-inline">
|
|
<a href="<%= servers[item].url %>"><%- __('nodeList') %> <%= servers[item].num %></a><span> / </span>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<%- partial('_partial/world') %>
|
|
<br>
|
|
<%- partial('_partial/contributing') %>
|
|
|
|
<%- partial('_partial/buttons') %>
|
|
</main>
|