
* Removed <p> margin-top * Vertically align logo so Add-media button does not fall off * Remove last 960.gs traces (grid_X/container_X) and add custom classes/sizes to css * Add clear class * Update form_box and add form_box_xl for bigger forms * Switch all pages that use forms to new classes * Remove padding from notification messages so they take full width * Other tiny fixes I forgot about
30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
{#
|
|
# GNU MediaGoblin -- federated, autonomous media hosting
|
|
# Copyright (C) 2011 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/>.
|
|
#}
|
|
{% extends "mediagoblin/base.html" %}
|
|
|
|
{% block mediagoblin_content %}
|
|
<img class="right_align" src="{{ request.staticdirect('/images/404.png') }}"
|
|
alt="{% trans %}Image of 404 goblin stressing out{% endtrans %}" />
|
|
<h1>{% trans %}Oops!{% endtrans %}</h1>
|
|
<p>{% trans %}There doesn't seem to be a page at this address. Sorry!{% endtrans %}</p>
|
|
<p>
|
|
{%- trans %}If you're sure the address is correct, maybe the page you're looking for has been moved or deleted.{% endtrans -%}
|
|
</p>
|
|
<div class="clear"></div>
|
|
{% endblock %}
|