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

<!DOCTYPE html> <html lang="en"> {% include header.html %} <body> {% include navbar.html %} <div class="container"> <div class="content"> <div class="hero-unit"> <h1>{{page.title}}</h1> <p>{{page.description}}</p> </div> <time itemprop="datePublished" datetime="{{ page.date| date: "%Y-%m-%d" }}"> {{ page.date | date_to_string }} </time> <div itemprop="text">{{content}}</div> </div> </div> {% include footer.html %} </body> </html>