weaver-lib 0.3.0

static site generator as a library, markdown and liquid in, HTML out.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	{% for content in content %}
			{% for sub_content in content[1] %}
				{% if sub_content.meta.emit %}
					<url>
						<loc>{{site_config.base_url}}{{ sub_content.route }}</loc>
						<lastmod>{{ sub_content.meta.last_updated }}</lastmod>
					</url>
				{% endif %}
			{% endfor %}
	{% endfor %}
</urlset>