| 
									
										
										
										
											2021-06-15 02:35:40 +02:00
										 |  |  | {% extends 'pageWrapper.html' %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block head %} | 
					
						
							|  |  |  |     <title>Player Settings</title> | 
					
						
							|  |  |  |     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/games.css") }}" /> | 
					
						
							|  |  |  | {% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block body %} | 
					
						
							|  |  |  |     {% include 'header/grassHeader.html' %} | 
					
						
							|  |  |  |     <div id="games"> | 
					
						
							|  |  |  |         <h1>Currently Supported Games</h1> | 
					
						
							| 
									
										
										
										
											2022-01-06 19:49:26 +01:00
										 |  |  |         {% for game, description in worlds.items() | sort %} | 
					
						
							| 
									
										
										
										
											2021-10-11 21:20:31 -04:00
										 |  |  |         <h3><a href="{{ url_for("game_info", game=game, lang="en") }}">{{ game }}</a></h3> | 
					
						
							|  |  |  |         <p> | 
					
						
							|  |  |  |             <a href="{{ url_for("player_settings", game=game) }}">Settings Page</a> | 
					
						
							|  |  |  |             <br /> | 
					
						
							|  |  |  |             {{ description }} | 
					
						
							|  |  |  |         </p> | 
					
						
							| 
									
										
										
										
											2021-06-15 02:35:40 +02:00
										 |  |  |         {% endfor %} | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | {% endblock %} |