Skip to content

Commit

Permalink
favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber committed Mar 25, 2012
1 parent 8b69674 commit df332de
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.py
@@ -1,11 +1,19 @@
import os import os
import threeProjs import threeProjs
import kitty import kitty

from flask import Flask from flask import Flask
from flask import render_template from flask import render_template
from flask import send_from_directory

app = Flask(__name__) app = Flask(__name__)
id = 774437 id = 774437


@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("/googlef34ca2b18ef9d5d0.html") @app.route("/googlef34ca2b18ef9d5d0.html")
def googleVerificationPage(): def googleVerificationPage():
return render_template('googlef34ca2b18ef9d5d0.html') return render_template('googlef34ca2b18ef9d5d0.html')
Expand Down

0 comments on commit df332de

Please sign in to comment.