<head>
<title>{% block title %}{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <link rel="stylesheet" type="text/css" href="{{ urlroot|e }}/style.css">
- <link rel="icon" type="image/vnd.microsoft.icon" href="{{ urlroot|e }}/favicon.ico">
+ <link rel="stylesheet" type="text/css" href="{{ urlroot|e }}/static/style.css">
+ <link rel="icon" type="image/vnd.microsoft.icon" href="{{ urlroot|e }}/static/favicon.ico">
{% block header %}{% endblock %}
</head>
<body>
help="path to the sqlite3 database file")
options, args = parser.parse_args()
app = Application(sqlite3.connect(options.database))
- app = SharedDataMiddleware(app, {"/": ("dedup", "static")})
+ app = SharedDataMiddleware(app, {"/static": ("dedup", "static")})
make_server("0.0.0.0", 8800, app).serve_forever()
if __name__ == "__main__":