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