2025-10-14 18:53:40 +00:00
|
|
|
<% layout('./layout') %>
|
|
|
|
|
|
|
|
|
|
<div class="grid">
|
|
|
|
|
<% it.data.forEach(function(r){ %>
|
2026-08-31 10:54:18 +00:00
|
|
|
<a class="title" href="/transparency/<%= r.target[0] %>"><%= r.title %></a>
|
2025-10-14 18:53:40 +00:00
|
|
|
<% }) %>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-12-31 21:32:32 +00:00
|
|
|
<style>
|
|
|
|
|
.grid {
|
2025-10-14 18:53:40 +00:00
|
|
|
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;
|
2025-10-14 18:53:40 +00:00
|
|
|
}
|
|
|
|
|
</style>
|