This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
fedifeed/lib/template.ejs

41 lines
745 B
Plaintext

<html>
<head>
<meta charset="UTF-8"></meta>
<style type="text/css">
.item{
border:solid 1px black;
}
.meta{
}
.title{
font-weight:bold;
}
</style>
</head>
<body>
<div class="meta">
<div class="title">
<a href="<%= meta.link %>">
<%- meta.title %>
</a>
</div>
<div class="description"><%- meta.description %></div>
</div>
<div class="container">
<% items.forEach(function(item){ %>
<div class="item">
<div class="item-title">
<%- item.title %>
</div>
<div class="item-content">
<%- item['atom:content']['#'] %>
</div>
</div>
<% }); %>
</div>
</body>
</html>