Bläddra i källkod

footer only on homepage now

tags/release-00
gashapwn 3 år sedan
förälder
incheckning
d60e2ac726
3 ändrade filer med 7 tillägg och 3 borttagningar
  1. +2
    -2
      app.py
  2. +4
    -0
      templates/main_layout.html
  3. +1
    -1
      templates/rules.html

+ 2
- 2
app.py Visa fil

@@ -8,8 +8,8 @@ def home():


u_list = []; u_list = [];
with open("user_list.txt") as u_file: 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") return render_template("index.html", u_list=u_list, page_name="home")




+ 4
- 0
templates/main_layout.html Visa fil

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


+ 1
- 1
templates/rules.html Visa fil

@@ -1,4 +1,4 @@
{%extends "layout.html"%}
{%extends "main_layout.html"%}


{%block content%} {%block content%}
<p> <p>


Laddar…
Avbryt
Spara