You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
576 B

<html>
<head>
<meta charset="UTF-8">
<title>INDEX</title>
<style>
body {
color: #333;
margin: 0;
padding: 40px;
font-family: PT Mono, monospace, sans-serif;;
}
h1 {
font-family: inherit;
}
ol {
font-size: 20px;
line-height: 1.6;
}
a {
color: inherit;
}
a:hover {
color: red;
}
</style>
</head>
<body>
<h1>Pages:</h1>
<ol><% _.each(pages, function(page) { %>
<li>
<a href="<%= page %>"><%= _.split(page, '.', 1) %></a>
</li>
<% }) %></ol>
</body>
</html>