In this repo i store all my websites, each in a different branch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% 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 %}
|