mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 22:28:12 -05:00
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<!--
|
|
This file is part of DarkFi (https://dark.fi)
|
|
|
|
Copyright (C) 2020-2026 Dyne.org foundation
|
|
|
|
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 <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
{% extends "base.html" %}
|
|
{% block title %}Not found!{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="background-container">
|
|
<img src="{{ url_for('static', filename='img/darkfi25.jpg') }}" style="width:100%;">
|
|
<div class="top-centered">
|
|
<h1 class="display-4 text-white border-l3" style="font-family:'Weissrundgotisch';line-height:.9em;">
|
|
Is this what you are looking for?
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|