60 lines
2.9 KiB
Twig
60 lines
2.9 KiB
Twig
{% extends 'html.twig' %}
|
|
{% from 'macros.twig' import container_title %}
|
|
|
|
{% set error_string = '%03d %s'|format(error_code, error_text) %}
|
|
{% set html_title = error_string ~ ' :: ' ~ globals.site_info.name %}
|
|
|
|
{% block html_head %}
|
|
<meta name="description" content="{{ error_blerb }}">
|
|
<link href="/vendor/fontawesome/css/all.min.css" type="text/css" rel="stylesheet">
|
|
<link href="{{ asset('errors.css') }}" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--error-colour: {{ error_colour }};
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block html_body %}
|
|
<div class="error">
|
|
<div class="error-wrapper">
|
|
<div class="error-container">
|
|
<nav class="error-top">
|
|
<div class="error-logo"><a href="{{ globals.site_info.url }}"><img src="/images/logos/imouto-default.png" alt=""></a></div>
|
|
<div class="error-home"><a href="{{ globals.site_info.url }}">{{ globals.site_info.name }}</a></div>
|
|
{% if error_code >= 500 %}
|
|
<div class="error-nav">
|
|
{% if globals.site_info.email is not empty %}
|
|
<a href="mailto:{{ globals.site_info.email }}" rel="noopener" target="_blank">E-mail</a>
|
|
{% endif %}
|
|
{% if globals.site_info.bsky is not empty %}
|
|
<a href="{{ globals.site_info.bsky }}" rel="noopener" target="_blank">Bluesky</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</nav>
|
|
<article class="error-body">
|
|
<div class="error-icon">
|
|
<i class="{{ error_icon }}"></i>
|
|
</div>
|
|
<h1 class="error-title">{{ error_string }}</h1>
|
|
<p class="error-blerb">{{ error_blerb }}</p>
|
|
</article>
|
|
<footer class="error-footer">
|
|
<p>
|
|
<a href="https://flash.moe" target="_blank" rel="noopener">flashwave</a>
|
|
2013-{{ ''|date('Y') }} /
|
|
{% set git_branch = git_branch() %}
|
|
{% if git_branch != 'HEAD' %}
|
|
<a href="https://patchii.net/flashii/misuzu/src/branch/{{ git_branch }}" target="_blank" rel="noopener">{{ git_branch }}</a>
|
|
{% else %}
|
|
{% set git_tag = git_tag() %}
|
|
<a href="https://patchii.net/flashii/misuzu/src/tag/{{ git_tag }}" target="_blank" rel="noopener">{{ git_tag }}</a>
|
|
{% endif %}
|
|
# <a href="https://patchii.net/flashii/misuzu/commit/{{ git_commit_hash(true) }}" target="_blank" rel="noopener">{{ git_commit_hash() }}</a>
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|