From e6472738b5253aa328f8b2a4f4f2a23abc8582c2 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Sun, 15 Apr 2012 18:59:50 +0200 Subject: Reorganization of folders. --- source/epub/templates/container.xml | 6 ++++++ source/epub/templates/content.opf | 34 ++++++++++++++++++++++++++++++++++ source/epub/templates/ez-section.html | 17 +++++++++++++++++ source/epub/templates/image.html | 16 ++++++++++++++++ source/epub/templates/title-page.html | 22 ++++++++++++++++++++++ source/epub/templates/toc.html | 32 ++++++++++++++++++++++++++++++++ source/epub/templates/toc.ncx | 28 ++++++++++++++++++++++++++++ 7 files changed, 155 insertions(+) create mode 100644 source/epub/templates/container.xml create mode 100644 source/epub/templates/content.opf create mode 100644 source/epub/templates/ez-section.html create mode 100644 source/epub/templates/image.html create mode 100644 source/epub/templates/title-page.html create mode 100644 source/epub/templates/toc.html create mode 100644 source/epub/templates/toc.ncx (limited to 'source/epub/templates') diff --git a/source/epub/templates/container.xml b/source/epub/templates/container.xml new file mode 100644 index 00000000..eecf7a0d --- /dev/null +++ b/source/epub/templates/container.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/source/epub/templates/content.opf b/source/epub/templates/content.opf new file mode 100644 index 00000000..67f3f5c6 --- /dev/null +++ b/source/epub/templates/content.opf @@ -0,0 +1,34 @@ + + + + urn:uuid:${book.UUID} + ${book.lang} + ${book.title} + + $name + + + ${Markup(beginTag)}$content${Markup(endTag)} + + + + + + + + + + + + + + + + + + + + diff --git a/source/epub/templates/ez-section.html b/source/epub/templates/ez-section.html new file mode 100644 index 00000000..0a715e7f --- /dev/null +++ b/source/epub/templates/ez-section.html @@ -0,0 +1,17 @@ + + + ${section.title} + + + +

${section.title}

+ +

$p

+
+ + diff --git a/source/epub/templates/image.html b/source/epub/templates/image.html new file mode 100644 index 00000000..9a838c7e --- /dev/null +++ b/source/epub/templates/image.html @@ -0,0 +1,16 @@ + + + ${item.destPath} + + + +
${item.destPath}
+ + diff --git a/source/epub/templates/title-page.html b/source/epub/templates/title-page.html new file mode 100644 index 00000000..de0f55f0 --- /dev/null +++ b/source/epub/templates/title-page.html @@ -0,0 +1,22 @@ + + + ${book.title} + + + +

${book.title}

+

+ + $creator + +

+ + diff --git a/source/epub/templates/toc.html b/source/epub/templates/toc.html new file mode 100644 index 00000000..b14c9da3 --- /dev/null +++ b/source/epub/templates/toc.html @@ -0,0 +1,32 @@ + + + ${book.title} + + + + + + + ${tocEntry(child)} + + + + ${tocEntry(child)} + + + diff --git a/source/epub/templates/toc.ncx b/source/epub/templates/toc.ncx new file mode 100644 index 00000000..e7dd391a --- /dev/null +++ b/source/epub/templates/toc.ncx @@ -0,0 +1,28 @@ + + + + + + + + + + ${book.title} + + + + + ${node.title} + + + ${navPoint(child)} + + + + + ${navPoint(child)} + + + -- cgit