video-static-html/templates/main.tpl

22 lines
558 B
Smarty

<!DOCTYPE html>
<html lang="en">
<head>
{% include "head.tpl" %}
</head>
<body>
{% include "header.tpl" %}
<main role="main">
<section class="jumbotron">
<h1 class="display-4">Hello there!</h1>
<p class="lead">General info about the page goes here</p>
<p><a class="btn btn-primary btn-lg" href="#">Learn more</a></p>
</section>
<section class="container">
<div class="row">
{{ content }}
</div>
</section>
</main>
{% include "footer.tpl" %}
</body>
</html>