11 lines
296 B
PHP
11 lines
296 B
PHP
|
|
<html>
|
||
|
|
<head><title>{[ block 'title' ]}Default Title{[ endblock ]}</title></head>
|
||
|
|
<body>
|
||
|
|
<header><h1>Site Header</h1></header>
|
||
|
|
<main>
|
||
|
|
{[ block 'content' ]}Default Content{[ endblock ]}
|
||
|
|
</main>
|
||
|
|
<footer>{[ block 'footer' ]}© 2026{[ endblock ]}</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|