commit 243c9b3fe813dddd527f9e521705a682b8c6e0ff Author: Gabriel Date: Wed May 3 17:00:36 2023 -0400 start diff --git a/Content/backcover.xhtml b/Content/backcover.xhtml new file mode 100644 index 0000000..8d0cf33 --- /dev/null +++ b/Content/backcover.xhtml @@ -0,0 +1,13 @@ + + + + + Book + + + + + + Cover + + diff --git a/Content/ch01.xhtml b/Content/ch01.xhtml new file mode 100644 index 0000000..763bd7a --- /dev/null +++ b/Content/ch01.xhtml @@ -0,0 +1,15 @@ + + + + + Chapter 1 + + + + +
+

Chapter 1

+

It all began...

+
+ + diff --git a/Content/cover.xhtml b/Content/cover.xhtml new file mode 100644 index 0000000..ca22c24 --- /dev/null +++ b/Content/cover.xhtml @@ -0,0 +1,13 @@ + + + + + Book + + + + + + Cover + + diff --git a/Content/img/back.png b/Content/img/back.png new file mode 100644 index 0000000..ccb8ca5 Binary files /dev/null and b/Content/img/back.png differ diff --git a/Content/img/book.png b/Content/img/book.png new file mode 100644 index 0000000..86dd6d0 Binary files /dev/null and b/Content/img/book.png differ diff --git a/Content/package.opf b/Content/package.opf new file mode 100644 index 0000000..82d5744 --- /dev/null +++ b/Content/package.opf @@ -0,0 +1,66 @@ + + + + urn:uuid:00000000-0000-0000-0000-000000000000 + 2019-07-25T18:00:00Z + https://en.wikipedia.org/wiki/EPUB + en + The Book's Title + main + Book's Title, The + Tytuł książki w innym języku + Secondary Title + subtitle + The Book's Author + aut + Author, The Book's + Very good book about everything what is in The Universe + Świetna książka o wszystkich rzeczach we Wszechświecie + Novel + Dark Ages + FICTION / Literary + BISAC + FIC019000 + My Books Collection + series + 1 + my-id + Self-publishing + 2017-03-01 + urn:isbn:0000000000000 + urn:goodreads:00000 + urn:lubimyczytac:00000 + https://github.com/spajak/epub3-boilerplate + 10 + 100 + + Joe Translator + trl + + Sebastian Pająk + mrk + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content/style/book.css b/Content/style/book.css new file mode 100644 index 0000000..dc1a998 --- /dev/null +++ b/Content/style/book.css @@ -0,0 +1,8 @@ +@charset "utf-8"; + +@page{ + margin-left: 10pt; + margin-right:10pt; + padding:0; +} + diff --git a/Content/style/cover.css b/Content/style/cover.css new file mode 100644 index 0000000..e69de29 diff --git a/Content/titlepage.xhtml b/Content/titlepage.xhtml new file mode 100644 index 0000000..3f6bcd9 --- /dev/null +++ b/Content/titlepage.xhtml @@ -0,0 +1,12 @@ + + + + + Book + + + + +

Book

+ + diff --git a/Content/toc.ncx b/Content/toc.ncx new file mode 100644 index 0000000..2e07c36 --- /dev/null +++ b/Content/toc.ncx @@ -0,0 +1,33 @@ + + + + + + + + +The Book's Title +The Book's Author + + + Cover + + + + Title Page + + + + Table of Contents + + + + Chapter I + + + + Backcover + + + + diff --git a/Content/toc.xhtml b/Content/toc.xhtml new file mode 100644 index 0000000..34d0e41 --- /dev/null +++ b/Content/toc.xhtml @@ -0,0 +1,17 @@ + + + + + Table of Contents + + + + + + + diff --git a/META-INF/container.xml b/META-INF/container.xml new file mode 100644 index 0000000..d2a176b --- /dev/null +++ b/META-INF/container.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/export.sh b/export.sh new file mode 100755 index 0000000..b76c69b --- /dev/null +++ b/export.sh @@ -0,0 +1,5 @@ +#!/bin/sh +rm book.epub +7za a "book.epub" mimetype +7za a "book.epub" "META-INF/*" +7za a "book.epub" Content/* \ No newline at end of file diff --git a/mimetype b/mimetype new file mode 100644 index 0000000..403c4f0 --- /dev/null +++ b/mimetype @@ -0,0 +1 @@ +application/epub+zip diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..1958037 --- /dev/null +++ b/readme.md @@ -0,0 +1,17 @@ +# EPUB + + + +## Adding your information + + +## Adding additional chapters + + + + +References: +- https://gist.github.com/stormwild/86673836eb6153e6ab2e65b4353a289e +- https://github.com/spajak/epub3-boilerplate/blob/master/template/toc.ncx +- https://www.w3.org/publishing/epub32/epub-spec.html +- https://github.com/reitermarkus/epub3-boilerplate \ No newline at end of file