Documentation additions. Fixes to compilation. Made true passthrough which works.
This commit is contained in:
3
examples/pixywerk.com/publish/css/main.css
Normal file
3
examples/pixywerk.com/publish/css/main.css
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
body { margin: 10% 10% 0 10% }
|
BIN
examples/pixywerk.com/publish/images/20190415-0.jpg
Normal file
BIN
examples/pixywerk.com/publish/images/20190415-0.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 72 KiB |
0
examples/pixywerk.com/publish/images/placeholder
Normal file
0
examples/pixywerk.com/publish/images/placeholder
Normal file
13
examples/pixywerk.com/publish/index.html
Normal file
13
examples/pixywerk.com/publish/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<link rel="stylesheet" type="text/css" href="css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<p>This is my index!!</p>
|
||||
|
||||
for i in posts[:5]:
|
||||
|
||||
get metadata, fill in post image/text summary with link
|
||||
</body>
|
||||
</html>
|
18
examples/pixywerk.com/publish/posts/2019-04-15.html
Normal file
18
examples/pixywerk.com/publish/posts/2019-04-15.html
Normal file
@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>My first post</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<img src="../images/20190415-0.jpg" class="featured">
|
||||
<div class="byline">
|
||||
<p>Author: Cas Rusnov</p>
|
||||
<p>Published: 2019-04-16T01:42:27.156392+00:00
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<p>This is an example post!</p>
|
||||
<p>yo fresh</p>
|
||||
<p>There are many posts like it but this one is mine.</p>
|
||||
</body>
|
||||
</html>
|
9
examples/pixywerk.com/publish/templates/default.jinja2
Normal file
9
examples/pixywerk.com/publish/templates/default.jinja2
Normal file
@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ metadata.title }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
{{ content }}
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user