def info(): return app.send_static_file('info.html')
def index(): return app.send_static_file('index.html')
def index(): # model = ProjectsModel() return app.send_static_file('index.html')
def send_text_file(file_name): full_file_name = file_name + '.txt' return app.send_static_file(full_file_name)
def send_static_file(filename): path = 'images/' + filename return app.send_static_file(path)
def send_album_pict(album_title, filename): path = 'uploads/pict/' + album_title + '/' + filename return app.send_static_file(path)
def send_album_thumbs(album_title, filename): path = 'uploads/thumb/' + album_title + '/' + filename return app.send_static_file(path)