timeline: template + css

pull/7/head
Castro0o 4 years ago
parent 3e56a6c8f6
commit a9fed3c9a4

@ -41,7 +41,7 @@ create archive folder: `mkdir archive`
run script outputting to archive folder and displaying the images from the wiki:
`python dumpwiki.py --output archive --local`
`python3 dumpwiki.py --output archive --local`
### Categories and Templates:

@ -0,0 +1,3 @@
body { background: red;
color: white;
}

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ staticpath }}/static/archive.css" />
<link rel="stylesheet" href="{{ staticpath }}/static/timeline.css" />
<title>{{ page.name }}</title>
</head>
<body>
<h1>{{ page.name }}</h1>
<div id="body">{{ body|safe }}</div>
</body>
</html>
Loading…
Cancel
Save