All checks were successful
Build and push container image / build-and-push-image (push) Successful in 6m3s
16 lines
378 B
HTML
16 lines
378 B
HTML
{% extends "bases/base.html" %}
|
|
|
|
{% block title %}{{ code }} - {{ name }}{% endblock %}
|
|
{% block description %}The page you are looking for does not exist.{% endblock %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<img src="https://http.cat/images/{{ code }}.jpg" alt="">
|
|
</section>
|
|
<section>
|
|
<h2>Actual error</h2>
|
|
<p>
|
|
{{ description }}
|
|
</p>
|
|
</section>
|
|
{% endblock %} |