yet-another-blog/frontend/views/themes/default/ejs/index.ejs

38 lines
1.0 KiB
Plaintext

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="/css/index.css" />
<link rel="stylesheet" type="text/css" href="/css/generic.css" />
<title>Yet-Another-Blog</title>
</head>
<body>
<%- include("partials/header.ejs") %>
<div class="page">
<div class="page-center">
<div class="post-list-container">
<div class="post-list">
<% for(post of blog_list) { %>
<!-- -->
<%- include("partials/post.ejs", {post:post}) %>
<!-- -->
<% } %>
</div>
<div class="tag-list">
<div class="tag-header">TAGS</div>
<div class="list">
<% for(tag of tags) { %>
<a class="tag icon" href="/posts/?search=<%= tag.name %> "><%= tag.name %></a>
<% } %>
</div>
</div>
</div>
<%- include("partials/pagination.ejs") %>
</div>
</div>
<%- include("partials/footer.ejs") %>
</body>
</html>