byceps/byceps

View on GitHub
byceps/blueprints/admin/page/templates/admin/page/view_version_preview.html

Summary

Maintainability
Test Coverage
{% from 'macros/misc.html' import render_notification -%}


<!DOCTYPE html>
<html lang="de">
  <head>
    <meta charset="utf-8">
    <meta name="referrer" content="origin-when-cross-origin">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="{{ url_for('static', filename='style/common.css') }}">
    <link rel="stylesheet" href="{{ url_for('static', filename='style/admin.css') }}">
{%- if not error_occurred and head %}
{{ head|safe }}
{%- endif %}
  </head>
  <body style="background-color: transparent; padding: 2rem;">

    <main>
{%- if error_occurred %}
      <h1 class="title">{{ _('Error') }}</h1>
{{ render_notification('<pre style="white-space: pre-wrap;">%s</pre>'|format(error_message)|safe, category='danger') }}
{%- else %}
      <h1 class="title">{{ title }}</h1>
{{ body|safe }}
{%- endif %}
    </main>

  </body>
</html>