obsolete.computer

multistream/frontend/templates/error.html

File Type: text/plain

{% extends "base.html" %}{% load static %}
{% block body %}
    <div id="contentwrapper" class="errortemplate">
        <a id="logo" href="{{ base_url }}"{% if community %} style="background-color: {{ community.header_bg_color }};"{% endif %}>
            <img src='{% if community %}{{ community.logo_url }}{% else %}{% static "images/multi-logo.png" %}{% endif %}' />
        </a>
        <div id="error">
            <strong class="error">{{ message }}</strong>
        </div>
    </div>
{% endblock %}

Meta