Skip to content

Commit ab62b1a

Browse files
committedApr 15, 2023
update
1 parent dcdabea commit ab62b1a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎app.py

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
from app import create_app
12

3+
app = create_app()

‎app/templates/base.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!doctype html>
2-
<title>{% block title %}{% endblock %} - Flaskr</title>
2+
<title>{% block title %}{% endblock %} - LokasBot</title>
33
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
44
<style>
55
body {
66
direction: rtl;
77
}
88
</style>
99
<nav>
10-
<h1>App</h1>
10+
<h1>LokasBot</h1>
1111
<ul>
1212
{% if g.user %}
1313
<li><span>{{ g.user['username'] }}</span>

0 commit comments

Comments
 (0)
Please sign in to comment.