61 lines
1 KiB
Text
61 lines
1 KiB
Text
# fpc-sitegen example template
|
|
# labels (e.g. head-format) can be taken as plain-text when prefixed with a back-slash
|
|
|
|
title-format:
|
|
$$CONTENT$$
|
|
head-format:
|
|
$$CONTENT$$
|
|
sub-head-format:
|
|
$$CONTENT$$
|
|
text-format:
|
|
$$CONTENT$$
|
|
section-format:
|
|
<div class="nfo-inner">
|
|
$$CONTENT$$
|
|
</div>
|
|
root-section-format:
|
|
$$CONTENT$$
|
|
output-format:
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>$$DOCUMENT_TITLE$$</title>
|
|
<link rel="icon" type="image/gif" href="/catcube.fav.gif">
|
|
<style>
|
|
body {
|
|
margin: 2rem;
|
|
padding: 0;
|
|
|
|
background: white;
|
|
|
|
font-family: Monospace;
|
|
font-size: 16pt;
|
|
font-weight: bold;
|
|
|
|
color: black;
|
|
|
|
text-shadow: 2pt 2pt 4pt black;
|
|
}
|
|
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
max-width: 80ch;
|
|
}
|
|
|
|
.nfo-outer {
|
|
margin: 0 auto;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.nfo-inner {
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
$$CONTENT$$
|
|
</body>
|
|
</html>
|