1
0
mirror of https://github.com/tiyn/beaker-blog.git synced 2026-02-22 12:54:48 +01:00

src: fixed quote-signs

This commit is contained in:
2022-07-29 23:03:37 +02:00
parent b2676f6bd9
commit 6f5c5a98af
3 changed files with 72 additions and 72 deletions

View File

@@ -1,4 +1,4 @@
from flask import Flask, flash, make_response, render_template, request, redirect, abort
from flask import Flask, make_response, render_template, abort
import content as con_gen
import config
@@ -25,7 +25,7 @@ def index():
@app.route("/archive")
@app.route("/archive.html")
def blog_archive():
def archive():
content = con_gen.gen_arch_string()
return render_template("archive.html", title=TITLE, content_string=content, style=STYLE)