diff options
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..9b298e7 --- /dev/null +++ b/template.html @@ -0,0 +1,28 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>$title$</title> + <style> + table, td, th { + border: 1px solid black; + } + th { + padding-top: 5px; + padding-bottom: 5px; + } + td { + padding-top: 2.5px; + padding-bottom: 2.5px; + } + th, td { + padding-left: 10px; + padding-right: 10px; + } + </style> + </head> + <body> + $body$ + </body> +</html> + |