Content type template example

{% extends skin.layout '%}

{% comment %}
Tell the system to use 'extend' a layout, 
skin.layout is a variable containing the path 
to the layout of the chosen skin 
and is passed to the template
{% endcomment %}

{% block title %}{{page_title}}{% endblock %}

{% block content %}
<div class="page_title">
{% if page_title %}<h2>{{page_title}}</h2>{% endif %}
{% if message %}<h3>{{message}}</h3>{% endif %}
</div>

{% comment %}
Use safe here so you can pass in HTML. However make sure 
you do escape or filter user provided data.
{% endcomment %}
{{content|safe}}
{% endblock %}