This repository has been archived on 2026-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GitBlog.md/sample_data/home/index.ejs
T
2019-06-26 20:09:08 +02:00

24 lines
719 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<%- include('head'); %>
<title><%= info.title %> - Home</title>
</head>
<body>
<main>
<h1><%= info.title %></h1>
<%= info.description %>
<h2>Articles in this blog :</h2>
<% articles.forEach((article) => { %>
<div class="article">
<h3><%- `<a href="${article.url}">${article.title}</a>` %></h3>
<span class="time"><span>Published on</span> <%= article.year + '-' + article.month + '-' + article.day %></span>
<% if(article.thumbnail){ %>
<%- `<img alt="thumbnail" src=${article.thumbnail}>` %>
<% } %>
</div>
<% }); %>
<%- include('footer'); %>
</main>
</body>
</html>