<!DOCTYPE html>
<html>
<head>
<title>Includes Test</title>
</head>
<body>
{% include "include_header.html" %}
<div class="container">
{% include "include_sidebar.html" %}
<main>
<h1>{{ page_title }}</h1>
<p>{{ content }}</p>
</main>
</div>
{% include "include_footer.html" %}
</body>
</html>