Loading liteshort.py +8 −1 Original line number Diff line number Diff line Loading @@ -3,8 +3,9 @@ # This software is license under the MIT license. It should be included in your copy of this software. # A copy of the MIT license can be obtained at https://mit-license.org/ from flask import Flask, current_app, flash, g, jsonify, redirect, render_template, request, url_for from flask import Flask, current_app, flash, g, jsonify, redirect, render_template, request, send_from_directory, url_for import bcrypt import os import random import sqlite3 import time Loading Loading @@ -193,6 +194,12 @@ app.secret_key = app.config['secret_key'] app.config['SERVER_NAME'] = app.config['site_domain'] @app.route('/favicon.ico') def favicon(): return send_from_directory(os.path.join(app.root_path, 'static'), 'favicon.ico', mimetype='image/vnd.microsoft.icon') @app.route('/', subdomain=app.config['subdomain']) def main(): return response(request, True) Loading templates/main.html +0 −1 Original line number Diff line number Diff line Loading @@ -9,7 +9,6 @@ A copy of the MIT license can be obtained at https://mit-license.org/ <head> <meta charset="UTF-8"> <title>{{ config.site_name }}</title> <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"> <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> Loading Loading
liteshort.py +8 −1 Original line number Diff line number Diff line Loading @@ -3,8 +3,9 @@ # This software is license under the MIT license. It should be included in your copy of this software. # A copy of the MIT license can be obtained at https://mit-license.org/ from flask import Flask, current_app, flash, g, jsonify, redirect, render_template, request, url_for from flask import Flask, current_app, flash, g, jsonify, redirect, render_template, request, send_from_directory, url_for import bcrypt import os import random import sqlite3 import time Loading Loading @@ -193,6 +194,12 @@ app.secret_key = app.config['secret_key'] app.config['SERVER_NAME'] = app.config['site_domain'] @app.route('/favicon.ico') def favicon(): return send_from_directory(os.path.join(app.root_path, 'static'), 'favicon.ico', mimetype='image/vnd.microsoft.icon') @app.route('/', subdomain=app.config['subdomain']) def main(): return response(request, True) Loading
templates/main.html +0 −1 Original line number Diff line number Diff line Loading @@ -9,7 +9,6 @@ A copy of the MIT license can be obtained at https://mit-license.org/ <head> <meta charset="UTF-8"> <title>{{ config.site_name }}</title> <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"> <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> Loading