backend/src/templates/transparency.eta

21 lines
360 B
Plaintext
Raw Normal View History

<% layout('./layout') %>
<div class="grid">
<% it.data.forEach(function(r){ %>
<a class="title" href="/transparency/<%= r.target %>"><%= r.title %></a>
<% }) %>
</div>
2025-12-31 21:32:32 +00:00
<style>
.grid {
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
.title {
font-size: larger;
font-weight: 600;
2025-12-31 21:32:32 +00:00
display: block;
}
</style>