8 lines
234 B
Text
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') %>
|