Added some empty templates

- Make it possible for site owners to hook into base.html without
  tainting the repository.
This commit is contained in:
Joar Wandborg 2013-02-22 22:20:06 +01:00
parent 0037706a57
commit b33b360858
4 changed files with 54 additions and 0 deletions

View File

@ -42,6 +42,7 @@
{% endblock mediagoblin_head %} {% endblock mediagoblin_head %}
</head> </head>
<body> <body>
{% include 'mediagoblin/bits/body-start.html' %}
{% block mediagoblin_body %} {% block mediagoblin_body %}
{% block mediagoblin_header %} {% block mediagoblin_header %}
<header> <header>
@ -109,6 +110,7 @@
</header> </header>
{% endblock %} {% endblock %}
<div class="container"> <div class="container">
{% include 'mediagoblin/bits/above-content.html' %}
<div class="mediagoblin_content"> <div class="mediagoblin_content">
{% include "mediagoblin/utils/messages.html" %} {% include "mediagoblin/utils/messages.html" %}
{% block mediagoblin_content %} {% block mediagoblin_content %}
@ -126,5 +128,6 @@
{%- endblock mediagoblin_footer %} {%- endblock mediagoblin_footer %}
</div> </div>
{%- endblock mediagoblin_body %} {%- endblock mediagoblin_body %}
{% include 'mediagoblin/bits/body-end.html' %}
</body> </body>
</html> </html>

View File

@ -0,0 +1,17 @@
{#
# GNU MediaGoblin -- federated, autonomous media hosting
# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#}

View File

@ -0,0 +1,17 @@
{#
# GNU MediaGoblin -- federated, autonomous media hosting
# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#}

View File

@ -0,0 +1,17 @@
{#
# GNU MediaGoblin -- federated, autonomous media hosting
# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#}