remove unneeded path to ico
This commit is contained in:
parent
7a2f9beb83
commit
0df6dd44fe
2 changed files with 1 additions and 5 deletions
4
app.py
4
app.py
|
@ -10,10 +10,6 @@ cache=Cache(app)
|
||||||
def index():
|
def index():
|
||||||
return render_template("map.html")
|
return render_template("map.html")
|
||||||
|
|
||||||
@app.route("/gas.ico")
|
|
||||||
def favicon():
|
|
||||||
return send_from_directory(app.static_folder,"gas.ico")
|
|
||||||
|
|
||||||
@app.route("/samsclub.csv")
|
@app.route("/samsclub.csv")
|
||||||
@cache.cached(timeout=1800)
|
@cache.cached(timeout=1800)
|
||||||
def sams():
|
def sams():
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>Gas Prices</title>
|
<title>Gas Prices</title>
|
||||||
<meta name="description" content="Track the gas prices of Sam's Club and Costco locations across the United States">
|
<meta name="description" content="Track the gas prices of Sam's Club and Costco locations across the United States">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<link rel="shortcut icon" href="gas.ico">
|
<link rel="shortcut icon" href="static/gas.ico">
|
||||||
<script src="/static/leaflet/leaflet.js"></script>
|
<script src="/static/leaflet/leaflet.js"></script>
|
||||||
<link rel="stylesheet" href="/static/leaflet/leaflet.css">
|
<link rel="stylesheet" href="/static/leaflet/leaflet.css">
|
||||||
<base target="_blank">
|
<base target="_blank">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue