You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
960 B
Python

from flask import Blueprint, render_template, send_from_directory
import json
from . import dump
import os
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(
"generate",
__name__,
url_prefix="/generate",
)
@bp.route("/")
def blocks():
# temporary, eventually we will dump contents only when they are updated (git hooks + git pull ?)
dump.dump(index)
with open("postit/contents.json", "r") as f:
contents = json.load(f)
return render_template("postit-single.html", contents=contents)
@bp.route("/<slug>")
def block(slug=None):
dump.dump([slug])
with open("postit/contents.json", "r") as f:
contents = json.load(f)
block = [post for post in contents if post["slug"] == slug]
return render_template("postit-single.html", contents=block)