fediparty/themes/starter/layout/about.ejs

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-05-17 16:40:46 +00:00
---
layout: layout
---
<%
const team = site.data.about.team;
%>
<main class="contents about">
<h2>Source code</h2>
<div class="code">
<a href="https://codeberg.org/fediverse/fediparty">repository</a> | <a href="https://codeberg.org/lostinlight/distributopia/src/branch/main/all-logos-in-one-basket">logo hub</a>
</div>
<h2>About us</h2>
<% for (u in team) { %>
2022-05-17 23:04:54 +00:00
<ul>
2022-05-17 16:40:46 +00:00
<li><img src="<%= team[u].avatar %>" alt="avatar"></li>
2022-05-17 23:04:54 +00:00
<li>• <span>nickname: </span> <%= team[u].nickname %></li>
2022-05-17 16:40:46 +00:00
<% if (team[u].name) { %>
2022-05-17 23:04:54 +00:00
<li>• <span>name: </span> <%= team[u].name %></li>
2022-05-17 16:40:46 +00:00
<% } %>
<% if (team[u].site) { %>
2022-05-17 23:04:54 +00:00
<li>• <span>site:</span> <a href="https://<%= team[u].site %>"><%= team[u].site %></a></li>
2022-05-17 16:40:46 +00:00
<% } %>
2022-05-17 23:04:54 +00:00
<li>• <span>Fedi account:</span> <a href="https://<%= team[u].fediacc %>"><%= team[u].fediacc %></a></li>
2022-05-17 16:40:46 +00:00
<% if (team[u].gitacc) { %>
2022-05-17 23:04:54 +00:00
<li>• <span>code:</span> <a href="https://<%= team[u].gitacc %>"><%= team[u].gitacc %></a></li>
2022-05-17 16:40:46 +00:00
<% } %>
2022-05-17 23:04:54 +00:00
<li>• <span>info:</span> <%= team[u].info %></li>
2022-05-17 16:40:46 +00:00
</ul>
<% } %>
</main>