34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<title><%=description%></title>
|
||
<meta charset="UTF-8">
|
||
<meta name="description" content="">
|
||
<meta name="keywords" content="">
|
||
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
||
|
||
<!-- CSS
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="stylesheet" href="css/normalize.css">
|
||
<link rel="stylesheet" href="css/skeleton.css">
|
||
</head>
|
||
<body>
|
||
|
||
<div class="container">
|
||
<h1><%= title %></h1>
|
||
<% items.forEach(function (item) { %>
|
||
|
||
<div class='row entry'>
|
||
<h4><a href='<%=item.url%>'><%=item.title %></a></h4>
|
||
<div class='u-full-width content'><%-item.description-%></div>
|
||
<div class='info' style='font-size:75%;'>
|
||
<span class='author' ><%=item.author%></span>
|
||
<span class='date' ><%=item.date%></span>
|
||
</div>
|
||
</div>
|
||
<% }) %>
|
||
|
||
</div>
|
||
</body>
|
||
</html>
|