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:
		| @@ -1,18 +1,18 @@ | ||||
| {% extends 'pageWrapper.html' %} | ||||
| 
 | ||||
| {% block head %} | ||||
|     <title>Player Settings</title> | ||||
|     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/zelda3/playerSettings.css") }}" /> | ||||
|     <title>A Link to the Past Settings</title> | ||||
|     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/zelda3/player-settings.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> | ||||
|     <script type="application/ecmascript" src="{{ url_for('static', filename="assets/zelda3/playerSettings.js") }}"></script> | ||||
|     <script type="application/ecmascript" src="{{ url_for('static', filename="assets/zelda3/player-settings.js") }}"></script> | ||||
| {% endblock %} | ||||
| 
 | ||||
| {% block body %} | ||||
|     {% include 'header/grassHeader.html' %} | ||||
|     <div id="player-settings"> | ||||
|         <div id="user-message"></div> | ||||
|         <h1>Start Game</h1> | ||||
|         <h1>A Link to the Past Settings</h1> | ||||
|         <p>Choose the options you would like to play with! You may generate a single-player game from this page, | ||||
|             or download a settings file you can use to participate in a MultiWorld. If you would like to make | ||||
|             your settings extra random, check out the advanced <a href="/weighted-settings">weighted settings</a> | ||||
| @@ -1,10 +1,15 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
|     <title>Link to the Past</title> | ||||
| </head> | ||||
| <body> | ||||
|     Link to the Past<br /> | ||||
|     <a href="/games/zelda3/player-settings">Player Settings</a> | ||||
| </body> | ||||
| </html> | ||||
| {% extends 'pageWrapper.html' %} | ||||
|  | ||||
| {% block head %} | ||||
|     <title>A Link to the Past</title> | ||||
|     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/zelda3/zelda3.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="zelda3"> | ||||
|         Coming Soon™ | ||||
|     </div> | ||||
| {% endblock %} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Chris Wilson
					Chris Wilson