1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/blog/post.html

19 lines
482 B
HTML
Raw Normal View History

2016-02-20 19:27:18 +00:00
{% extends 'content_base.html' %}
{% block pageTitle %}{{ html_title }}{% endblock %}
{% block content %}
2016-02-20 23:06:49 +00:00
<div class="container">
<div class="row">
2016-03-15 22:55:07 +00:00
<div class="col-sm-9">
{{ blog.content | safe }}
</div>
<div class="col-sm-3">
2016-02-20 23:06:49 +00:00
<h5>Published: {{ blog.date }}</h5>
2016-03-15 22:55:07 +00:00
<h5><i class="icon ion-thumbsup"></i> {{ blog.like_count }}</h5>
<h5><a href="{{ blog.URL }}">View Post</a></h5>
2016-02-20 23:06:49 +00:00
</div>
2016-02-20 19:27:18 +00:00
</div>
</div>
{% endblock %}