Added a basic HTML template for use when finalizing a book before converting it to other formats.
This commit is contained in:
parent
579adf26d6
commit
fc9ff8d1fe
7 changed files with 22 additions and 6 deletions
0
template/.gitkeep
Normal file
0
template/.gitkeep
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<!--
|
||||
this is the place for the cover of the book.
|
||||
you are free to do what you want but be sure
|
||||
to respect the HTML standards.
|
||||
-->
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<!--
|
||||
this is the place for the footer notes of the book.
|
||||
you are free to do what you want but be sure
|
||||
to respect the HTML standards.
|
||||
-->
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>$TITLE</title>
|
||||
</head>
|
||||
|
|
@ -1,5 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" id="top" xmlns="http://www.w3.org/1999/html">
|
||||
<meta charset="utf-8">
|
||||
$HEAD
|
||||
<body>
|
||||
$TOC
|
||||
$CONTENT
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
1
template/toc.html
Normal file
1
template/toc.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<!-- maybe not needed but added for future thinking about it. -->
|
||||
Loading…
Add table
Add a link
Reference in a new issue