Skip to content

Commit 04615eb

Browse files
authored
Add files via upload
1 parent 63b6e9d commit 04615eb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+15315
-0
lines changed

Diff for: day82/main.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from flask import Flask, render_template
2+
3+
4+
app = Flask(__name__)
5+
6+
7+
@app.route('/')
8+
def home_page():
9+
return render_template("index.html")
10+
11+
12+
if __name__ == "__main__":
13+
app.run(port=8080, debug=True)

Diff for: day82/static/assets/css/fontawesome-all.min.css

+101
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: day82/static/assets/css/images/avatar.png

9.72 KB
Loading

Diff for: day82/static/assets/css/images/ie/grad0-15.svg

+9
Loading

Diff for: day82/static/assets/css/images/overlay.png

54 KB
Loading

0 commit comments

Comments
 (0)