We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcdabea commit ab62b1aCopy full SHA for ab62b1a
app.py
@@ -1 +1,3 @@
1
+from app import create_app
2
3
+app = create_app()
app/templates/base.html
@@ -1,13 +1,13 @@
<!doctype html>
-<title>{% block title %}{% endblock %} - Flaskr</title>
+<title>{% block title %}{% endblock %} - LokasBot</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
4
<style>
5
body {
6
direction: rtl;
7
}
8
</style>
9
<nav>
10
- <h1>App</h1>
+ <h1>LokasBot</h1>
11
<ul>
12
{% if g.user %}
13
<li><span>{{ g.user['username'] }}</span>
0 commit comments