Skip to content
Snippets Groups Projects
Verified Commit 20290359 authored by Jakob Moser's avatar Jakob Moser
Browse files

Move frontend code (= all current code) into portal/{static,template} dirs

parent c2bc782d
No related branches found
No related tags found
1 merge request!4Add a Flask-based backend
Showing
with 14 additions and 0 deletions
File moved
......@@ -4,11 +4,11 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Start · FS Coli Portal</title>
<link rel="stylesheet" href="/css/main.css" />
<link rel="icon" href="/img/portal.svg" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}" />
<link rel="icon" href="{{ url_for('static', filename='img/portal.svg') }}" />
</head>
<body class="blue"></body>
<script type="module" src="/js/portal.mjs"></script>
<script type="module" src="{{ url_for('static', filename='js/portal.mjs') }}"></script>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment