2018-03-12 20:31:14 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
layout: layout
|
|
|
|
---
|
|
|
|
|
|
|
|
<%
|
|
|
|
const fv = site.data.fediversei18n.article;
|
|
|
|
const networks = site.data.common.list;
|
|
|
|
const protocols = site.data.common.protocols;
|
|
|
|
const langs = site.data.common.langs;
|
|
|
|
%>
|
|
|
|
|
|
|
|
<%- partial('_partial/heroheader') %>
|
|
|
|
|
|
|
|
<main class="contents">
|
|
|
|
<div class="section">
|
|
|
|
<h4>Fediverse</h4><span><%= fv.definition %></span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p><%= fv.preamble %></p>
|
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('networks') %></h4>
|
|
|
|
<ul class="section-list">
|
|
|
|
<% for (item in networks) { %>
|
|
|
|
<li class="u-inline">
|
|
|
|
<a href="<%= networks[item].url %>"><%= networks[item].title %></a><span>, </span>
|
|
|
|
</li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('protocols') %></h4>
|
|
|
|
<ul class="section-list">
|
|
|
|
<% for (item in protocols) { %>
|
|
|
|
<li class="u-inline">
|
|
|
|
<a href="<%= protocols[item].url %>"><%= protocols[item].name %></a><span>, </span>
|
|
|
|
</li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('langs') %></h4>
|
|
|
|
<ul class="article-list">
|
|
|
|
<% for (item in langs) { %>
|
|
|
|
<li><strong><%= langs[item].name %></strong>: <%= langs[item].networks %></li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p><%= fv.info %></p>
|
|
|
|
|
2018-03-27 02:50:09 +02:00
|
|
|
<p class="u-center">
|
2018-08-24 00:18:07 +02:00
|
|
|
<a href="https://the-federation.info" class="u-block u-emphasize btn-action centered"><%- __('joinF') %></a>
|
2018-03-27 02:50:09 +02:00
|
|
|
<small>* alternative lists of servers may be found on some network pages under “join the network” title</small>
|
|
|
|
</p>
|
|
|
|
|
2018-03-12 20:31:14 +01:00
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('history') %></h4>
|
2018-08-22 16:40:59 +02:00
|
|
|
<ul class="article-list">
|
2018-03-12 20:31:14 +01:00
|
|
|
<% for (item in fv.history) { %>
|
|
|
|
<li><a href="<%= fv.history[item].url %>"><%= fv.history[item].title %></a></li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('projects') %></h4>
|
2018-08-22 16:40:59 +02:00
|
|
|
<ul class="article-list">
|
2018-03-12 20:31:14 +01:00
|
|
|
<% for (item in fv.projects) { %>
|
|
|
|
<li><a href="<%= fv.projects[item].url %>"><%= fv.projects[item].title %></a></li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('reading') %></h4>
|
2018-08-22 16:40:59 +02:00
|
|
|
<ul class="article-list">
|
2018-03-12 20:31:14 +01:00
|
|
|
<% for (item in fv.reading) { %>
|
|
|
|
<li><a href="<%= fv.reading[item].url %>"><%= fv.reading[item].title %></a></li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%- partial('_partial/buttons') %>
|
|
|
|
</main>
|