Compare commits

..

No commits in common. "d86ac40602027f0cb269c5613d86b99f3874e61c" and "5af2b996d68a07bd0b4a3f8fe8eb298c6130128c" have entirely different histories.

2 changed files with 2 additions and 10 deletions

4
app.py
View File

@ -2,10 +2,6 @@ from flask import Flask, send_from_directory
app = Flask(__name__) app = Flask(__name__)
@app.route("/")
def svelte_index():
return send_from_directory("webapp/build", "index.html")
@app.route("/<path:path>") @app.route("/<path:path>")
def svelte_client(path): def svelte_client(path):
return send_from_directory("webapp/build/", path) return send_from_directory("webapp/build/", path)

View File

@ -1,15 +1,11 @@
<script> <script>
export let open = false export let open = false
function close() {
open = false
}
</script> </script>
<aside class="absolute w-full h-full bg-gray-200 border-r-2 shadow-lg" class:open> <aside class="absolute w-full h-full bg-gray-200 border-r-2 shadow-lg" class:open>
<nav class="p-12 text-xl"> <nav class="p-12 text-xl">
<a class="block" href="/" on:click={close}>Home</a> <a class="block" href="/">Home</a>
<a class="block" href="/about" on:click={close}>About</a> <a class="block" href="/about">About</a>
</nav> </nav>
</aside> </aside>