footer only on homepage now

This commit is contained in:
gashapwn 2020-11-26 22:15:40 +00:00
parent f682147507
commit d60e2ac726
3 changed files with 7 additions and 3 deletions

4
app.py
View File

@ -8,8 +8,8 @@ def home():
u_list = [];
with open("user_list.txt") as u_file:
for line in u_file:
u_list.append(line);
for line in u_file.readlines():
u_list.append(line.strip());
return render_template("index.html", u_list=u_list, page_name="home")

View File

@ -1,7 +1,11 @@
<!DOCTYPE html>
<head>
<title>LAINTILDE0</title>
{% if page_name %}
<link rel="stylesheet" href="{{url_for('static',filename='main_' + page_name + '.css')}}">
{% else %}
<link rel="stylesheet" href="{{url_for('static',filename='main.css')}}">
{% endif %}
</head>
<h1>lingy.in</h1>
<body>

View File

@ -1,4 +1,4 @@
{%extends "layout.html"%}
{%extends "main_layout.html"%}
{%block content%}
<p>