You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
978 B
Plaintext
24 lines
978 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xml:lang="<%- lang %>" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title><%= title %></title>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<h1 class="h1"><%= tocTitle %></h1>
|
|
<% content.forEach(function(content, index){ %>
|
|
<% if(!content.excludeFromToc){ %>
|
|
<p class="table-of-content">
|
|
<a href="<%= content.href %>"><%= (1+index) + ". " + (content.title || "Chapter "+ (1+index)) %>
|
|
<% if(content.author.length){ %>
|
|
- <small class="toc-author"><%= content.author.join(",") %></small>
|
|
<% } %>
|
|
<% if(content.url){ %><span class="toc-link"><%= content.url %></span><% }else{ %><span class="toc-link"></span><% } %>
|
|
</a>
|
|
</p>
|
|
<% } %>
|
|
<% }) %>
|
|
</body>
|
|
</html> |