Modify video template to accomodate multiple resolutions
[mediagoblin.git] / mediagoblin / templates / mediagoblin / media_displays / blogpost.html
CommitLineData
0a2da087
A
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU Affero General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#}
18
43d143cd 19{% extends 'mediagoblin/user_pages/blog_media.html' %}
0a2da087
A
20
21{% block mediagoblin_head %}
22 {{ super() }}
23{% endblock %}
24
25{% block mediagoblin_media %}
03ff0b36 26<div class="media_other_container">
27 <h1> {{media.title}}</h1>
28 <p>{{media.description|safe}}</p>
29</div>
0a2da087
A
30{% endblock %}
31
32
33
34