Improvements to the WebHost

- Improved routing structure
- Improved style imports across site
- Added placeholder player-settings pages for Factorio and Minecraft
This commit is contained in:
Chris Wilson
2021-06-15 21:18:14 -04:00
parent 883ebbf267
commit bc9c93b180
24 changed files with 385 additions and 92 deletions

View File

@@ -1,9 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
{% extends 'pageWrapper.html' %}
{% block head %}
<title>Factorio</title>
</head>
<body>
Factorio
</body>
</html>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/factorio/factorio.css") }}" />
<script type="application/ecmascript" src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script type="application/ecmascript" src="{{ url_for('static', filename="assets/js-yaml.min.js") }}"></script>
{% endblock %}
{% block body %}
{% include 'header/grassHeader.html' %}
<div id="factorio">
Coming Soon™
</div>
{% endblock %}