VictorPy 0.1.32 comes with a bunch of overridable default templates:
base.html: a simple base template use by all default templates (based on Bootstrap + Bootswatch).page.html: the content page template.tags.html: a simple template to display a list of tags.tag.html: a simple template to display a list of pages related to a tag.contact.html: a default no-backend contact form, based on formspree.io.feed.html: RSS feed template.You can override on or several default template:
templates directory in your site root folder (see Configuration to change the templates directory name).For example, to override the page.html template, you'll want to create a file like this at your_site/templates/page.html:
<html>
<head>
<title>{{ title }}</title>
</head>
<body>
Oh, it's my own page template…
My page content rendered:
{{ content }}
</body>
</html>