mirror of
https://github.com/Kaffesky/kaffesky-markdown-templates.git
synced 2026-04-18 17:27:31 +02:00
24 lines
588 B
HTML
24 lines
588 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<title><span data-title></span></title>
|
||
|
|
<link rel="stylesheet" href="style.css" />
|
||
|
|
<style>
|
||
|
|
/* Document page: no extra top/bottom padding.
|
||
|
|
Top/bottom white space comes from header/footer height in Info.plist. */
|
||
|
|
body {
|
||
|
|
padding-top: var(--sp-4);
|
||
|
|
padding-bottom: var(--sp-4);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* The injected document content */
|
||
|
|
.document { }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="document" data-document></div>
|
||
|
|
</body>
|
||
|
|
</html>
|