|
|
- {% extends "base.new.html" %}
- {% set page_title = post.title %}
- {% block content %}
- <!-- Post Content Column -->
- <div class="col-lg-8">
-
- <!-- Title -->
- <h1 class="mt-4">{{post.title}}</h1>
-
- <hr>
-
- <!-- Date/Time and Author -->
- <p class="lead">Posted on {{post.date|date("F d, Y")}} by <a href="#">Marcel Haazen</a></p>
-
- <hr>
-
- <!-- Preview Image -->
- <img class="img-fluid rounded" src="https://placehold.it/900x300" alt="">
-
- <hr>
-
- <!-- Post Content -->
- {{post.body | raw}}
- </div>
- {% endblock %}
|