lib/templates/OEBPS/content.opf in epubber-0.1.5 vs lib/templates/OEBPS/content.opf in epubber-0.2.0

- old
+ new

@@ -47,11 +47,11 @@ <dc:date opf:event="publication">2012-01-01</dc:date> <!-- Language code: http://en.wikipedia.org/wiki/List_of_ISO_639-2_codes --> <dc:language>{{ book.language }}</dc:language> - <meta name="cover" content="[COVER_NAME].jpg" /> + <meta name="cover" content="{{ book.cover.filename }}" /> <!-- UUID generator: http://www.famkruithof.net/uuid/uuidgen --> <dc:identifier opf:scheme="UUID">urn:uuid:{{ book.uuid }}</dc:identifier> </metadata> @@ -62,14 +62,14 @@ http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.3 --> <manifest> - <!-- - <item href="Images/cover.jpg" id="cover.jpg" media-type="image/jpeg" /> - --> - <item href="Text/cover.xhtml" id="cover" media-type="application/xhtml+xml" /> + {% if book.cover %} + <item href="Images/{{ book.cover.filename }}" id="{{ book.cover.filename }}" media-type="{{ book.cover.file_mime }}" /> + <item href="Text/cover.xhtml" id="cover" media-type="application/xhtml+xml" /> + {% endif %} <item href="toc.ncx" id="ncx" media-type="application/x-dtbncx+xml" /> <item href="Styles/style.css" id="css" media-type="text/css" /> <!-- <item href="Text/frontmatter.xhtml" id="frontmatter" media-type="application/xhtml+xml" /> <item href="Text/dedication.xhtml" id="dedication" media-type="application/xhtml+xml" /> @@ -113,12 +113,14 @@ http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.4 --> <spine toc="ncx"> + {% if book.cover %} + <itemref idref="cover" /> + {% endif %} <!-- - <itemref idref="cover" /> <itemref idref="frontmatter" /> --> <itemref idref="toc" /> <!-- <itemref idref="foreword" /> @@ -150,12 +152,12 @@ http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.6 --> <guide> - <!-- - <reference href="Text/cover.xhtml" title="Cover" type="cover" /> - --> + {% if book.cover %} + <reference href="Text/cover.xhtml" title="Cover" type="cover" /> + {% endif %} <reference href="Text/toc.xhtml" title="Table of Contents" type="toc" /> <!-- <reference href="Text/frontmatter.xhtml" type="copyright-page" /> <reference href="Text/foreword.xhtml" type="foreword" /> <reference href="Text/dedication.xhtml" type="dedication" />