add example site
This commit is contained in:
parent
c59961093b
commit
e78f3e80c4
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
*.egg-info
|
*.egg-info
|
||||||
*.pyc
|
*.pyc
|
||||||
test_site/
|
test_site/
|
||||||
|
example/target/
|
||||||
|
|
13
example/markdown/page1.md
Normal file
13
example/markdown/page1.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
Template: default
|
||||||
|
Title: Page one
|
||||||
|
Description: Test page one
|
||||||
|
When: today
|
||||||
|
|
||||||
|
|
||||||
|
# Header
|
||||||
|
|
||||||
|
Some text
|
||||||
|
|
||||||
|
- one
|
||||||
|
- two
|
||||||
|
|
11
example/markdown/page2.md
Normal file
11
example/markdown/page2.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
Template: default
|
||||||
|
Title: Page two
|
||||||
|
When: tomorrow
|
||||||
|
|
||||||
|
|
||||||
|
# Header
|
||||||
|
|
||||||
|
- three
|
||||||
|
- four
|
||||||
|
|
||||||
|
Bottom text
|
|
@ -1,8 +0,0 @@
|
||||||
Title: Home Page
|
|
||||||
Author: anon
|
|
||||||
|
|
||||||
|
|
||||||
# Site
|
|
||||||
|
|
||||||
Some text
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
Title: Other Test Page
|
|
||||||
Template: other_template
|
|
||||||
|
|
||||||
|
|
||||||
# Title
|
|
||||||
|
|
||||||
Some other text
|
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<title>{{ title }}</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<head>
|
||||||
|
<title>{{ title }}</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="content">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</body>
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -6,11 +6,15 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<ul>
|
{% for pname, page in pages.items() %}
|
||||||
{% for page in pages %}
|
<div>
|
||||||
<li>{{page['title']}}</li>
|
<p>
|
||||||
{% endfor %}
|
<a href="{{page.link}}">{{page.title}}</a>
|
||||||
</ul>
|
</p>
|
||||||
|
<p>{{page.description}}</p>
|
||||||
|
<p>{{page.when}}</p>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>{{ title }}</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<h1>Other Template</h1>
|
|
||||||
{{ content }}
|
|
||||||
</body>
|
|
||||||
</html>
|
|
17
example/templates/rss.xml
Normal file
17
example/templates/rss.xml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<rss version="2.0">
|
||||||
|
|
||||||
|
<channel>
|
||||||
|
<title>Unit</title>
|
||||||
|
<link>https://unit.macaomilano.org</link>
|
||||||
|
<description>unit</description>
|
||||||
|
{% for pname, page in pages.items() %}
|
||||||
|
<item>
|
||||||
|
<title>{{ page.title }}</title>
|
||||||
|
<link>{{ page.link }}</link>
|
||||||
|
<description>{{ page.description }}</description>
|
||||||
|
</item>
|
||||||
|
{% endfor %}
|
||||||
|
</channel>
|
||||||
|
|
||||||
|
</rss>
|
Loading…
Reference in New Issue
Block a user