diff options
Diffstat (limited to 'youtube/__init__.py')
-rw-r--r-- | youtube/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/youtube/__init__.py b/youtube/__init__.py index f935f1e..ff5c984 100644 --- a/youtube/__init__.py +++ b/youtube/__init__.py @@ -21,6 +21,14 @@ def homepage(): return flask.render_template('home.html', title="Youtube local") +@yt_app.route('/licenses') +def licensepage(): + return flask.render_template( + 'licenses.html', + title="Licenses - YouTube Local" + ) + + theme_names = { 0: 'light_theme', 1: 'gray_theme', |