Compare commits

..

No commits in common. 'df36945c640d1aa200b1f727cedd3ed622a368e4' and '94d280761ee0b05f923dbcdc13ddfe40a32bb2d9' have entirely different histories.

File diff suppressed because one or more lines are too long

@ -3,7 +3,7 @@ import json
from . import dump
import os
index = ['intro','what-is-a-loot-box', 'crosswords', 'one-sentence-game-ideas', 'nim', 'mimic', 'unfinished-thoughts', 'the-leader', 'connect-less', 'xquisite', 'katamari', 'life-hacks', 'karaoke', 'outro']
index = ['what-is-a-loot-box', 'crosswords', 'one-sentence-game-ideas', 'nim', 'mimic', 'unfinished-thoughts', 'the-leader', 'connect-less', 'xquisite', 'katamari', 'life-hacks', 'karaoke']
bp = Blueprint(

@ -3,13 +3,11 @@ import os
bp = Blueprint("home", __name__, url_prefix="/")
index = ['intro','what-is-a-loot-box', 'crosswords', 'one-sentence-game-ideas', 'nim', 'mimic', 'unfinished-thoughts', 'the-leader', 'connect-less', 'xquisite', 'katamari', 'life-hacks', 'karaoke', 'outro']
@bp.route("/")
def home():
# path = "postit/static/contents"
# pages = [f.name for f in os.scandir(path) if f.is_dir()]
path = "postit/static/contents"
pages = [f.name for f in os.scandir(path) if f.is_dir()]
return render_template("home.html", pages=index)
return render_template("home.html", pages=pages)

@ -1 +1 @@
Subproject commit a84e5b4bc23c388e6c92181724f7315345188485
Subproject commit 509de21339967cd9d2bac73071a56e2eacb78a12

@ -12,6 +12,10 @@
</head>
<body>
<div class="post-it">
<img src="{{url_for('static', filename='img/index_purple.jpg')}}" >
</div>
{%for contribution, contents in contributions.items()%}
{% for content in contents %}

Loading…
Cancel
Save