aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/templates/page.html
blob: 9402f368f285900f2bf1c2018c408e3836e61287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block title %}{{ article.title }}{% endblock %}
{% block content %}
<div role="main" class="content clearfix">	
	<div class="post wrapper">
		<h1>{{ page.title }}</h1>
		{{ page.content }}		
	</div>
</div>
{% endblock %}