Improve book reports

This commit is contained in:
Augusto Gunsch
2022-02-13 18:15:30 -03:00
parent b6e8167e2e
commit bcbb7406f1
4 changed files with 120 additions and 13 deletions

28
templates/default.html Normal file
View File

@@ -0,0 +1,28 @@
<style>
#meta {
width: 100%;
font-size: 1.3em;
}
#meta td:nth-child(2) {
text-align: right;
}
</style>
<table id="meta">
<tr>
<td>!**title**!:</td> <td>$title$</td>
</tr>
<tr>
<td>!**author**!:</td> <td>$author$</td>
</tr>
<tr>
<td>!**date**!:</td> <td>$date$</td>
</tr>
</table>
<hr>
<article>
$body$
</article>