mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-22 16:41:29 +00:00
Add extra html classes
This commit is contained in:
parent
d360eab0df
commit
55ec487381
|
@ -77,7 +77,7 @@
|
||||||
<% if (reading) { %>
|
<% if (reading) { %>
|
||||||
<div class="section u-block">
|
<div class="section u-block">
|
||||||
<h4><%- __('reading') %></h4>
|
<h4><%- __('reading') %></h4>
|
||||||
<ul>
|
<ul class="article-list">
|
||||||
<% for (item in reading) { %>
|
<% for (item in reading) { %>
|
||||||
<li><a href="<%= reading[item].url %>"><%= reading[item].title %></a></li>
|
<li><a href="<%= reading[item].url %>"><%= reading[item].title %></a></li>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
|
@ -59,7 +59,7 @@ layout: layout
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<h4><%- __('history') %></h4>
|
<h4><%- __('history') %></h4>
|
||||||
<ul>
|
<ul class="article-list">
|
||||||
<% for (item in fv.history) { %>
|
<% for (item in fv.history) { %>
|
||||||
<li><a href="<%= fv.history[item].url %>"><%= fv.history[item].title %></a></li>
|
<li><a href="<%= fv.history[item].url %>"><%= fv.history[item].title %></a></li>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
@ -68,7 +68,7 @@ layout: layout
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<h4><%- __('projects') %></h4>
|
<h4><%- __('projects') %></h4>
|
||||||
<ul>
|
<ul class="article-list">
|
||||||
<% for (item in fv.projects) { %>
|
<% for (item in fv.projects) { %>
|
||||||
<li><a href="<%= fv.projects[item].url %>"><%= fv.projects[item].title %></a></li>
|
<li><a href="<%= fv.projects[item].url %>"><%= fv.projects[item].title %></a></li>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
@ -77,14 +77,10 @@ layout: layout
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<h4><%- __('reading') %></h4>
|
<h4><%- __('reading') %></h4>
|
||||||
<ul>
|
<ul class="article-list">
|
||||||
<% for (item in fv.reading) { %>
|
<% for (item in fv.reading) { %>
|
||||||
<li><a href="<%= fv.reading[item].url %>"><%= fv.reading[item].title %></a></li>
|
<li><a href="<%= fv.reading[item].url %>"><%= fv.reading[item].title %></a></li>
|
||||||
<% } %>
|
<% } %>
|
||||||
<li><a href="<%= url_for(page.lang + '/post/FAQ-for-newcomers') %>"><%- __('faq4newbs') %></a></li>
|
|
||||||
<li>
|
|
||||||
<a href="<%= url_for(page.lang + '/post/Why-use-federated-networks') %>"><%- __('whyUseFediverse') %></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue