14 lines
350 B
Text
14 lines
350 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Default Title{% end %}</title>
|
|
</head>
|
|
<body>
|
|
{% block header %}<h1>Welcome</h1>{% end %}
|
|
|
|
<div id="content">{% block content %}{% end %}</div>
|
|
|
|
<footer>{% block footer %}<p>© {{ date("%Y", now()) }}</p>{% end %}</footer>
|
|
</body>
|
|
</html>
|