2018-03-12 19:31:14 +00:00
|
|
|
|
|
|
|
<%
|
|
|
|
const network = page.network;
|
|
|
|
const data = site.data[network].data;
|
|
|
|
%>
|
|
|
|
|
|
|
|
<section class="column">
|
|
|
|
<div class="section">
|
2018-08-23 22:18:07 +00:00
|
|
|
<h4><%- __('category') %></h4><span><%= data.category %></span>
|
2018-03-12 19:31:14 +00:00
|
|
|
</div>
|
|
|
|
<div class="section">
|
2018-08-23 22:18:07 +00:00
|
|
|
<h4><%- __('type') %></h4><span><%= data.type %></span>
|
2018-03-12 19:31:14 +00:00
|
|
|
</div>
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('created') %></h4><span><%= data.created %></span>
|
|
|
|
</div>
|
|
|
|
<div class="section">
|
2018-03-14 19:02:50 +00:00
|
|
|
<h4><%- __('official') %></h4><span><a href="<%= data.official %>"><%= data.official %></a></span>
|
2018-03-12 19:31:14 +00:00
|
|
|
</div>
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('license') %></h4><span><%= data.license %></span>
|
|
|
|
</div>
|
|
|
|
<div class="section">
|
2018-03-14 19:02:50 +00:00
|
|
|
<h4><%- __('code') %></h4><span><a href="<%= data.repo %>"><%- __('repo') %></a></span>
|
2018-03-12 19:31:14 +00:00
|
|
|
</div>
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('language') %></h4><span><%= data.language %></span>
|
|
|
|
</div>
|
|
|
|
<div class="section">
|
|
|
|
<h4><%- __('protocols') %></h4>
|
|
|
|
<ul class="section-list">
|
2018-08-23 22:18:07 +00:00
|
|
|
<% for (item in data.protocols) { %>
|
2018-03-12 19:31:14 +00:00
|
|
|
<li class="u-inline">
|
2018-08-23 22:18:07 +00:00
|
|
|
<a href="<%= data.protocols[item].url %>"><%= data.protocols[item].title %></a><span>, </span>
|
2018-03-12 19:31:14 +00:00
|
|
|
</li>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-03-24 01:51:28 +00:00
|
|
|
<% if (data.wiki) { %>
|
2018-03-12 19:31:14 +00:00
|
|
|
<div class="section">
|
2018-03-14 19:02:50 +00:00
|
|
|
<h4><%- __('wiki') %></h4><span><a href="<%= data.wiki %>"><%- __('resources') %></a></span>
|
2018-03-12 19:31:14 +00:00
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
</section>
|