<!DOCTYPE html> <html> {% include head.html %} <body> <main> {% include header.html %} <section class="blog-section"> <div class="container"> <div class="row"> <div class="col post-page policy"> <h1>{{page.title}}</h1> <p class="p-summary">{{ page.summary }}</p> <div class="post-body"> {{content}} </div> </div> </div> </div> </section> {% include footer.html %} </main> </body> </html>