Start development server with
FLASK_APP=seepark_web.py FLASK_DEBUG=1 flask run
--- /dev/null
+from flask import Flask, render_template
+app = Flask(__name__)
+
+@app.route("/")
+def hello():
+ return render_template('seepark_web.html')
+
--- /dev/null
+<html>
+ <head>
+ <!-- Load c3.css -->
+ <link href="{{url_for('static', filename='c3.css')}}" rel="stylesheet">
+
+ <!-- Load d3.js and c3.js -->
+ <script src="{{url_for('static', filename='d3.js')}}" charset="utf-8"></script>
+ <script src="{{url_for('static', filename='c3.js')}}"></script>
+ <title>Hi! :-)</title>
+ </head>
+ <body>
+ <h1>Hello world</h1>
+ </body>
+</html>