add pages

This commit is contained in:
2025-10-24 08:20:04 +02:00
parent 5a6b558d9c
commit 3645c60214
9 changed files with 943 additions and 0 deletions
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="{{ url_for('basic.favicon') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/root.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/blocked_access.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/fonts/PressStart2P.css') }}">
<title>Access Denied</title>
</head>
<body>
<div class="container">
<h1>403 - Access Denied</h1>
<p>Your IP address <span class="blocked-ip">{{ remote_addr }}</span> has been blocked from accessing this site.</p>
</div>
</body>
</html>
+25
View File
@@ -0,0 +1,25 @@
{% extends "base.htm" %}
{% block title %}🦊🐲 Yiprawr - {{ title }}{% endblock %}
{% block head %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/error.css') }}">
{% endblock %}
{% block content %}
<main class="error">
<h1 id="error-title" data-error-code="{{ header.title }}">{{ header.title }}</h1>
<p>{{ header.message }}</p>
<div id="dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<img src="{{ url_for('static', filename='images/error/' + file.name) }}" alt="{{ file.alt }}">
<a href="{{ url_for('side_main.index') }}">Go Back to the Home Page</a>
</main>
{% endblock %}