disseminate/templates/index.ejs
2024-03-28 14:33:58 -04:00

8 lines
234 B
Text

<%- include('header') %>
<div id="main-content">
<% for(const post of posts) { %>
<a class="post" href="/post/<%= post.file %>"><%= post.title %></a><br>
<% } %>
</div>
<%- include('global-style'); %>
<%- include('footer') %>