_layouts/post.html (27 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> <head> {% include head.html %} </head> <body> {% include navbar.html %} <div class="container"> <div class="page-header"> <h1>{{ page.title }}</h1> <span class="text-muted">{{ page.date | date_to_long_string }}, by {{ page.author }}</span> </div> {{ content }} {% if page.comments %} <div id="comments"> <hr/> {% include disqus.html %} </div> {% endif %} <div class="row clearfix"> <div id="footer" class="col-md-12 column"> {% include footer.html %} </div> </div> </div> </body> </html>