Newer
Older
from flask import Flask, render_template

Oliwer Mattsson
committed
from data import *
app = Flask(__name__,template_folder='./templates')

Oliwer Mattsson
committed
data = load('data.json')
@app.route("/")
def index():

Oliwer Mattsson
committed
return render_template('index.html')

Oliwer Mattsson
committed
def list():
return render_template('list.html',
projects = data)