diff --git a/app.py b/app.py index 3b78250..9b3e885 100644 --- a/app.py +++ b/app.py @@ -5,7 +5,7 @@ app=Flask(__name__) @app.route("/") def home(): app.route('/') - return render_template("home.html") + return render_template("index.html") def home2(name): # app.route('/home2/') diff --git a/static/main.css b/static/main.css index f575974..906c256 100644 --- a/static/main.css +++ b/static/main.css @@ -1,8 +1,12 @@ +html { + background: #000; +} + body { margin: 0; padding: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - color: #060; + color: #fff; } /* @@ -10,7 +14,6 @@ body { */ header { - background-color: #DFB887; height: 35px; width: 100%; opacity: .9; diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..2b4fba2 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,14 @@ +{%extends "layout.html"%} + +{%block content %} +
+

lingy.in is a public unix / tilde instance for lainchan users

+

thread: https://lainchan.org/tech/res/34563.html

+

request an account

+

users

+
    +
  1. gashapwn
  2. +
  3. china probably
  4. +
+
+{%endblock%} diff --git a/templates/layout.html b/templates/layout.html index 5a967fd..a72b840 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -3,7 +3,7 @@ userreq -

userreq

+

铃音

{%block content%}