default.html
HTML document, ASCII text
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4<meta charset="UTF-8"> 5<title>{% block title %}Blog{% endblock %}</title> 6</head> 7<body> 8<header> 9<nav> 10<ul> 11<li><a href="/">Home</a></li> 12</ul> 13</nav> 14</header> 15<main> 16{% block content %} 17{{ document.content | markdown }} 18{% endblock %} 19</main> 20<footer> 21<p>© 2024 Example Blog</p> 22</footer> 23</body> 24</html>