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.
75 lines
3.7 KiB
Plaintext
75 lines
3.7 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<package xmlns="http://www.idpf.org/2007/opf"
|
|
version="3.0"
|
|
unique-identifier="BookId"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:dcterms="http://purl.org/dc/terms/"
|
|
xml:lang="en"
|
|
xmlns:media="http://www.idpf.org/epub/vocab/overlays/#"
|
|
prefix="ibooks: http://vocabulary.itunes.apple.com/rdf/ibooks/vocabulary-extensions-1.0/">
|
|
|
|
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:opf="http://www.idpf.org/2007/opf">
|
|
|
|
<dc:identifier id="BookId"><%= id %></dc:identifier>
|
|
<meta refines="#BookId" property="identifier-type" scheme="onix:codelist5">22</meta>
|
|
<meta property="dcterms:identifier" id="meta-identifier">BookId</meta>
|
|
<dc:title><%= title %></dc:title>
|
|
<meta property="dcterms:title" id="meta-title"><%= title %></meta>
|
|
<dc:language><%= lang || "en" %></dc:language>
|
|
<meta property="dcterms:language" id="meta-language"><%= lang || "en" %></meta>
|
|
<meta property="dcterms:modified"><%= (new Date()).toISOString().split(".")[0]+ "Z" %></meta>
|
|
<dc:creator id="creator"><%= author.length ? author.join(",") : author %></dc:creator>
|
|
<meta refines="#creator" property="file-as"><%= author.length ? author.join(",") : author %></meta>
|
|
<meta property="dcterms:publisher"><%= publisher || "anonymous" %></meta>
|
|
<dc:publisher><%= publisher || "anonymous" %></dc:publisher>
|
|
<% var date = new Date(); var year = date.getFullYear(); var month = date.getMonth() + 1; var day = date.getDate(); var stringDate = "" + year + "-" + month + "-" + day; %>
|
|
<meta property="dcterms:date"><%= stringDate %></meta>
|
|
<dc:date><%= stringDate %></dc:date>
|
|
<meta property="dcterms:rights">All rights reserved</meta>
|
|
<dc:rights>Copyright © <%= (new Date()).getFullYear() %> by <%= publisher || "anonymous" %></dc:rights>
|
|
<meta name="cover" content="image_cover"/>
|
|
<meta name="generator" content="epub-gen" />
|
|
<meta property="ibooks:specified-fonts">true</meta>
|
|
|
|
</metadata>
|
|
|
|
<manifest>
|
|
<item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" />
|
|
<item id="toc" href="toc.xhtml" media-type="application/xhtml+xml" properties="nav"/>
|
|
<item id="css" href="style.css" media-type="text/css" />
|
|
|
|
<% if(locals.cover) { %>
|
|
<item id="image_cover" href="cover.<%= _coverExtension %>" media-type="<%= _coverMediaType %>" />
|
|
<% } %>
|
|
|
|
<% images.forEach(function(image, index){ %>
|
|
<item id="image_<%= index %>" href="images/<%= image.id %>.<%= image.extension %>" media-type="<%= image.mediaType %>" />
|
|
<% }) %>
|
|
|
|
<% content.forEach(function(content, index){ %>
|
|
<item id="content_<%= index %>_<%= content.id %>" href="<%= content.href %>" media-type="application/xhtml+xml" />
|
|
<% }) %>
|
|
|
|
<% fonts.forEach(function(font, index){%>
|
|
<item id="font_<%= index%>" href="fonts/<%= font %>" media-type="application/x-font-ttf" />
|
|
<%})%>
|
|
</manifest>
|
|
|
|
<spine toc="ncx">
|
|
<% content.forEach(function(content, index){ %>
|
|
<% if(content.beforeToc && !content.excludeFromToc){ %>
|
|
<itemref idref="content_<%= index %>_<%= content.id %>"/>
|
|
<% } %>
|
|
<% }) %>
|
|
<itemref idref="toc" />
|
|
<% content.forEach(function(content, index){ %>
|
|
<% if(!content.beforeToc && !content.excludeFromToc){ %>
|
|
<itemref idref="content_<%= index %>_<%= content.id %>"/>
|
|
<% } %>
|
|
<% }) %>
|
|
</spine>
|
|
<guide>
|
|
<reference type="text" title="Table of Content" href="toc.xhtml"/>
|
|
</guide>
|
|
</package> |