Compare commits

..

No commits in common. "97ac3b117589571519ebf9078595a08dc03f0037" and "fc8527d69f204ae74a3afea7778ad716fb93b243" have entirely different histories.

6 changed files with 4 additions and 97 deletions

View file

@ -87,7 +87,3 @@ def get_content(path: str) -> str:
return render_template("content.html.j2")
return abort(404)
@home.route("/about")
def about() -> str:
return render_template("about.html.j2")

View file

@ -1,62 +0,0 @@
:root {
--main-width: 85vw;
--bg-color: white;
--text-color: #212121;
--a-color: #7e22ce;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #212121;
--text-color: white;
}
}
/* large screen */
@media only screen and (min-width: 868px) {
:root {
--main-width: 50vw;
}
}
html {
font-family: sans-serif;
scroll-behavior: smooth;
color: var(--text-color);
}
body {
max-width: var(--main-width);
margin-left: auto;
margin-right: auto;
background-color: var(--bg-color);
line-height: 1.65
}
nav {
border-bottom: 1px solid black;
}
.menu ul {
list-style-type: none;
padding-left: 0;
}
.menu {
display: inline-block;
}
.menu li {
font-weight: bold;
}
a {
color: var(--a-color);
text-decoration: none;
}
a:hover {
color: black;
border-bottom: .2rem solid dimgrey;
}

View file

@ -1,4 +0,0 @@
{% extends "base.html.j2" %}
{% block content %}
<p>Gnous/Paste</p>
{% endblock %}

View file

@ -1,22 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Gnous/Paste</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}"/>
</head>
<body>
<nav class="menu">
<ul class="menu">
<li class="menu" {% if request.path == "/" %}><a href="{{ url_for("home.about") }}">About</a>{% elif request.path == "/about" %}<a href="{{ url_for("home.homepage") }}">Home</a>{% endif %}</li>
|
<li class="menu"><a href="https://git.gnous.eu/gnouseu/paste">Source</a></li>
</ul>
</nav>
<main>
{% block content %}
{% endblock %}
</main>
</body>
</html>

View file

@ -1,7 +1,5 @@
{% extends "base.html.j2" %}
{% block content %}
<form class="container" id="paste-content" method="POST" accept-charset="UTF-8" action="{{ url_for('home.create') }}">
<textarea name="content" form="paste-content" placeholder="Enter your text here"></textarea>
<form id="paste-content" method="POST" accept-charset="UTF-8" action="{{ url_for('home.create') }}">
<textarea name="content" form="paste-content">Enter text here...</textarea>
<label for="time">Time in second</label>
<input id="time" name="time">
<input type="submit">
@ -20,4 +18,4 @@
<p>Paste {{ messages[0] }} deleted </p>
{% endif %}
{% endwith %}
{% endblock %}

View file

@ -59,6 +59,7 @@ exclude = [
"instances",
"schema.sql"
]
format = "grouped"
[tool.isort]
profile = "black"