1
0
Fork 0
mirror of https://github.com/afkollektiv/afkollektor.de synced 2024-05-06 09:56:45 +00:00

Add basic theme

This commit is contained in:
Paul Brinkmeier 2017-11-02 17:00:51 +01:00
parent 30668cefcf
commit 11d9255691
3 changed files with 19 additions and 2 deletions

View file

@ -1,3 +1,6 @@
index: pages/index.md
index: pages/index.md styles/index.css
mkdir -p build
discount-theme pages/index.md -o build/index.html
cp styles/index.css build/index.css
discount-theme pages/index.md \
-o build/index.html \
-t templates/index.theme

4
styles/index.css Normal file
View file

@ -0,0 +1,4 @@
body {
font-family: Helvetica, Arial, sans-serif;
line-height: 1.5em;
}

10
templates/index.theme Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Der AfKollektor.</title>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<?theme body?>
</body>
</html>