Merged in develop (pull request #68)
Develop
This commit is contained in:
		
						commit
						65a6099a96
					
				
							
								
								
									
										3
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
								
							@ -1,2 +1 @@
 | 
			
		||||
*.gif filter=lfs diff=lfs merge=lfs -text
 | 
			
		||||
 | 
			
		||||
*.png filter=lfs diff=lfs merge=lfs -text
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								public/static/img/favicon/16x16.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/static/img/favicon/16x16.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/static/img/favicon/192x192.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/static/img/favicon/192x192.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/static/img/favicon/32x32.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/static/img/favicon/32x32.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/static/img/favicon/96x96.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/static/img/favicon/96x96.png
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										5
									
								
								public/static/img/favicon/favicon.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								public/static/img/favicon/favicon.svg
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,5 @@
 | 
			
		||||
<!-- The PNGs in this folder are generated from this SVG. -->
 | 
			
		||||
<!-- Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. -->
 | 
			
		||||
<svg viewBox="0 0 16 16" fill="#28a745" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
    <path fill-rule="evenodd" d="M15.817.613A.5.5 0 0 1 16 1v13a.5.5 0 0 1-.402.49l-5 1a.502.502 0 0 1-.196 0L5.5 14.51l-4.902.98A.5.5 0 0 1 0 15V2a.5.5 0 0 1 .402-.49l5-1a.5.5 0 0 1 .196 0l4.902.98 4.902-.98a.5.5 0 0 1 .415.103zM10 2.41l-4-.8v11.98l4 .8V2.41zm1 11.98l4-.8V1.61l-4 .8v11.98zm-6-.8V1.61l-4 .8v11.98l4-.8z" />
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 591 B  | 
							
								
								
									
										106
									
								
								views/game.php
									
									
									
									
									
								
							
							
						
						
									
										106
									
								
								views/game.php
									
									
									
									
									
								
							@ -1,69 +1,53 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="utf-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
			
		||||
    <title>MapGuesser</title>
 | 
			
		||||
    <link href="static/css/mapguesser.css" rel="stylesheet">
 | 
			
		||||
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&family=Roboto+Mono:wght@300;500&display=swap" rel="stylesheet">
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
    <div id="loading">
 | 
			
		||||
        <img src="static/img/loading.svg">
 | 
			
		||||
<?php require 'templates/main_header.php'; ?>
 | 
			
		||||
<div class="header small">
 | 
			
		||||
    <div class="grid">
 | 
			
		||||
        <h1>
 | 
			
		||||
            <a href="maps" title="Back to playable maps">
 | 
			
		||||
                <?php require 'templates/icon.php'; ?>
 | 
			
		||||
                <span>MapGuesser</span>
 | 
			
		||||
            </a>
 | 
			
		||||
        </h1>
 | 
			
		||||
        <p id="roundInfo">Round: <span id="currentRound" class="mono bold"></span> | Score: <span id="currentScoreSum" class="mono bold"></span></p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="header small">
 | 
			
		||||
        <div class="grid">
 | 
			
		||||
            <h1>
 | 
			
		||||
                <a href="maps" title="Back to playable maps">
 | 
			
		||||
                    <!-- Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. -->
 | 
			
		||||
                    <svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="#28a745" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
                        <path fill-rule="evenodd" d="M15.817.613A.5.5 0 0 1 16 1v13a.5.5 0 0 1-.402.49l-5 1a.502.502 0 0 1-.196 0L5.5 14.51l-4.902.98A.5.5 0 0 1 0 15V2a.5.5 0 0 1 .402-.49l5-1a.5.5 0 0 1 .196 0l4.902.98 4.902-.98a.5.5 0 0 1 .415.103zM10 2.41l-4-.8v11.98l4 .8V2.41zm1 11.98l4-.8V1.61l-4 .8v11.98zm-6-.8V1.61l-4 .8v11.98l4-.8z" />
 | 
			
		||||
                    </svg>
 | 
			
		||||
                    <span>MapGuesser</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </h1>
 | 
			
		||||
            <p id="roundInfo">Round: <span id="currentRound" class="mono bold"></span> | Score: <span id="currentScoreSum" class="mono bold"></span></p>
 | 
			
		||||
        </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div id="cover"></div>
 | 
			
		||||
<div id="panorama"></div>
 | 
			
		||||
<div id="showGuessButtonContainer">
 | 
			
		||||
    <button id="showGuessButton" class="fullWidth">Show guess map</button>
 | 
			
		||||
</div>
 | 
			
		||||
<div id="guess">
 | 
			
		||||
    <div id="closeGuessButtonContainer" class="buttonContainer marginBottom">
 | 
			
		||||
        <button id="closeGuessButton" class="fullWidth gray">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div id="cover"></div>
 | 
			
		||||
    <div id="panorama"></div>
 | 
			
		||||
    <div id="showGuessButtonContainer">
 | 
			
		||||
        <button id="showGuessButton" class="fullWidth">Show guess map</button>
 | 
			
		||||
    <div id="map"></div>
 | 
			
		||||
    <div id="guessButtonContainer" class="buttonContainer marginTop">
 | 
			
		||||
        <button id="guessButton" class="fullWidth" disabled>Guess</button>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div id="guess">
 | 
			
		||||
        <div id="closeGuessButtonContainer" class="buttonContainer marginBottom">
 | 
			
		||||
            <button id="closeGuessButton" class="fullWidth gray">Close</button>
 | 
			
		||||
    <div id="resultInfo">
 | 
			
		||||
        <div id="distanceInfo">
 | 
			
		||||
            <p>You were <span id="distance" class="bold"></span> close.</p>
 | 
			
		||||
            <p class="bold">Game finished.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div id="map"></div>
 | 
			
		||||
        <div id="guessButtonContainer" class="buttonContainer marginTop">
 | 
			
		||||
            <button id="guessButton" class="fullWidth" disabled>Guess</button>
 | 
			
		||||
        <div id="scoreInfo">
 | 
			
		||||
            <p>You earned <span id="score" class="bold"></span> points.</p>
 | 
			
		||||
            <p>You got <span id="scoreSum" class="bold"></span> points in total.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div id="resultInfo">
 | 
			
		||||
            <div id="distanceInfo">
 | 
			
		||||
                <p>You were <span id="distance" class="bold"></span> close.</p>
 | 
			
		||||
                <p class="bold">Game finished.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div id="scoreInfo">
 | 
			
		||||
                <p>You earned <span id="score" class="bold"></span> points.</p>
 | 
			
		||||
                <p>You got <span id="scoreSum" class="bold"></span> points in total.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div>
 | 
			
		||||
                <div id="scoreBarBase">
 | 
			
		||||
                    <div id="scoreBar"></div>
 | 
			
		||||
                </div>
 | 
			
		||||
        <div>
 | 
			
		||||
            <div id="scoreBarBase">
 | 
			
		||||
                <div id="scoreBar"></div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div id="continueButtonContainer" class="buttonContainer marginTop">
 | 
			
		||||
            <button id="continueButton" class="fullWidth">Continue</button>
 | 
			
		||||
            <button id="showSummaryButton" class="fullWidth">Show summary</button>
 | 
			
		||||
            <button id="startNewGameButton" class="fullWidth">Play this map again</button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <script>
 | 
			
		||||
        var mapId = '<?= $mapId ?>';
 | 
			
		||||
        var mapBounds = <?= json_encode($bounds) ?>;
 | 
			
		||||
    </script>
 | 
			
		||||
    <script src="https://maps.googleapis.com/maps/api/js?key=<?= $_ENV['GOOGLE_MAPS_JS_API_KEY'] ?>"></script>
 | 
			
		||||
    <script src="static/js/game.js"></script>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
    <div id="continueButtonContainer" class="buttonContainer marginTop">
 | 
			
		||||
        <button id="continueButton" class="fullWidth">Continue</button>
 | 
			
		||||
        <button id="showSummaryButton" class="fullWidth">Show summary</button>
 | 
			
		||||
        <button id="startNewGameButton" class="fullWidth">Play this map again</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<script>
 | 
			
		||||
    var mapId = '<?= $mapId ?>';
 | 
			
		||||
    var mapBounds = <?= json_encode($bounds) ?>;
 | 
			
		||||
</script>
 | 
			
		||||
<script src="https://maps.googleapis.com/maps/api/js?key=<?= $_ENV['GOOGLE_MAPS_JS_API_KEY'] ?>"></script>
 | 
			
		||||
<script src="static/js/game.js"></script>
 | 
			
		||||
<?php require 'templates/main_footer.php'; ?>
 | 
			
		||||
							
								
								
									
										118
									
								
								views/maps.php
									
									
									
									
									
								
							
							
						
						
									
										118
									
								
								views/maps.php
									
									
									
									
									
								
							@ -1,70 +1,54 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="utf-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
			
		||||
    <title>MapGuesser</title>
 | 
			
		||||
    <link href="static/css/mapguesser.css" rel="stylesheet">
 | 
			
		||||
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&family=Roboto+Mono:wght@300;500&display=swap" rel="stylesheet">
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
    <div id="loading">
 | 
			
		||||
        <img src="static/img/loading.svg">
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="header">
 | 
			
		||||
        <h1>
 | 
			
		||||
            <!-- Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. -->
 | 
			
		||||
            <svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="#28a745" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
                <path fill-rule="evenodd" d="M15.817.613A.5.5 0 0 1 16 1v13a.5.5 0 0 1-.402.49l-5 1a.502.502 0 0 1-.196 0L5.5 14.51l-4.902.98A.5.5 0 0 1 0 15V2a.5.5 0 0 1 .402-.49l5-1a.5.5 0 0 1 .196 0l4.902.98 4.902-.98a.5.5 0 0 1 .415.103zM10 2.41l-4-.8v11.98l4 .8V2.41zm1 11.98l4-.8V1.61l-4 .8v11.98zm-6-.8V1.61l-4 .8v11.98l4-.8z" />
 | 
			
		||||
            </svg>
 | 
			
		||||
            MapGuesser
 | 
			
		||||
        </h1>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="main">
 | 
			
		||||
        <h2>Playable maps</h2>
 | 
			
		||||
        <div class="mapContainer">
 | 
			
		||||
            <?php foreach ($maps as $map) : ?>
 | 
			
		||||
                <div class="mapItem">
 | 
			
		||||
                    <div class="title">
 | 
			
		||||
                        <p class="title"><?= $map['name'] ?></p>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <img src="https://maps.googleapis.com/maps/api/staticmap?size=350x175&visible=<?= $map['bound_south_lat'] . ',' . $map['bound_west_lng'] . '|' . $map['bound_north_lat'] . ',' . $map['bound_east_lng'] ?>&key=<?= $_ENV['GOOGLE_MAPS_JS_API_KEY'] ?>">
 | 
			
		||||
                    <div class="inner">
 | 
			
		||||
                        <div class="info">
 | 
			
		||||
                            <p>
 | 
			
		||||
                                <!-- Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. -->
 | 
			
		||||
                                <svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
                                    <path fill-rule="evenodd" d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" />
 | 
			
		||||
                                </svg>
 | 
			
		||||
                                <?= $map['num_places'] ?> places
 | 
			
		||||
                            </p>
 | 
			
		||||
                            <p>
 | 
			
		||||
                                <!-- Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. -->
 | 
			
		||||
                                <svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
                                    <path fill-rule="evenodd" d="M12.5 2h-9V1h9v1zm-10 1.5v9h-1v-9h1zm11 9v-9h1v9h-1zM3.5 14h9v1h-9v-1z" />
 | 
			
		||||
                                    <path fill-rule="evenodd" d="M14 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM2 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" />
 | 
			
		||||
                                </svg>
 | 
			
		||||
                                ~ <?= $map['area'][0] ?> <?= $map['area'][1] ?><sup>2</sup>
 | 
			
		||||
                            </p>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <p class="small justify marginTop"><?= $map['description'] ?></p>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <a class="button fullWidth" href="game?map=<?= $map['id']; ?>" title="Play map '<?= $map['name'] ?>'">Play this map</a>
 | 
			
		||||
<?php require 'templates/main_header.php'; ?>
 | 
			
		||||
<div class="header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        <?php require 'templates/icon.php'; ?>
 | 
			
		||||
        MapGuesser
 | 
			
		||||
    </h1>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="main">
 | 
			
		||||
    <h2>Playable maps</h2>
 | 
			
		||||
    <div class="mapContainer">
 | 
			
		||||
        <?php foreach ($maps as $map) : ?>
 | 
			
		||||
            <div class="mapItem">
 | 
			
		||||
                <div class="title">
 | 
			
		||||
                    <p class="title"><?= $map['name'] ?></p>
 | 
			
		||||
                </div>
 | 
			
		||||
            <?php endforeach; ?>
 | 
			
		||||
            <?php if (count($maps) < 4): ?>
 | 
			
		||||
                <?php for ($i = 0; $i < 4 - count($maps); ++$i): ?>
 | 
			
		||||
                    <div class="mapItem"></div>
 | 
			
		||||
                <?php endfor; ?>
 | 
			
		||||
            <?php endif; ?>
 | 
			
		||||
        </div>
 | 
			
		||||
                <img src="https://maps.googleapis.com/maps/api/staticmap?size=350x175&visible=<?= $map['bound_south_lat'] . ',' . $map['bound_west_lng'] . '|' . $map['bound_north_lat'] . ',' . $map['bound_east_lng'] ?>&key=<?= $_ENV['GOOGLE_MAPS_JS_API_KEY'] ?>">
 | 
			
		||||
                <div class="inner">
 | 
			
		||||
                    <div class="info">
 | 
			
		||||
                        <p>
 | 
			
		||||
                            <?php /* Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. */ ?>
 | 
			
		||||
                            <svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
                                <path fill-rule="evenodd" d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" />
 | 
			
		||||
                            </svg>
 | 
			
		||||
                            <?= $map['num_places'] ?> places
 | 
			
		||||
                        </p>
 | 
			
		||||
                        <p>
 | 
			
		||||
                            <?php /* Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. */ ?>
 | 
			
		||||
                            <svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
                                <path fill-rule="evenodd" d="M12.5 2h-9V1h9v1zm-10 1.5v9h-1v-9h1zm11 9v-9h1v9h-1zM3.5 14h9v1h-9v-1z" />
 | 
			
		||||
                                <path fill-rule="evenodd" d="M14 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM2 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" />
 | 
			
		||||
                            </svg>
 | 
			
		||||
                            ~ <?= $map['area'][0] ?> <?= $map['area'][1] ?><sup>2</sup>
 | 
			
		||||
                        </p>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <p class="small justify marginTop"><?= $map['description'] ?></p>
 | 
			
		||||
                </div>
 | 
			
		||||
                <a class="button fullWidth" href="game?map=<?= $map['id']; ?>" title="Play map '<?= $map['name'] ?>'">Play this map</a>
 | 
			
		||||
            </div>
 | 
			
		||||
        <?php endforeach; ?>
 | 
			
		||||
        <?php if (count($maps) < 4): ?>
 | 
			
		||||
            <?php for ($i = 0; $i < 4 - count($maps); ++$i): ?>
 | 
			
		||||
                <div class="mapItem"></div>
 | 
			
		||||
            <?php endfor; ?>
 | 
			
		||||
        <?php endif; ?>
 | 
			
		||||
    </div>
 | 
			
		||||
    <script>
 | 
			
		||||
        document.getElementById('loading').style.visibility = 'hidden';
 | 
			
		||||
</div>
 | 
			
		||||
<script>
 | 
			
		||||
    document.getElementById('loading').style.visibility = 'hidden';
 | 
			
		||||
 | 
			
		||||
        window.addEventListener('beforeunload', function (e) {
 | 
			
		||||
            document.getElementById('loading').style.visibility = 'visible';
 | 
			
		||||
        });
 | 
			
		||||
    </script>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
    window.addEventListener('beforeunload', function (e) {
 | 
			
		||||
        document.getElementById('loading').style.visibility = 'visible';
 | 
			
		||||
    });
 | 
			
		||||
</script>
 | 
			
		||||
<?php require 'templates/main_footer.php'; ?>
 | 
			
		||||
							
								
								
									
										4
									
								
								views/templates/icon.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								views/templates/icon.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,4 @@
 | 
			
		||||
<?php /* Copyright (c) 2019 The Bootstrap Authors. License can be found in 'USED_SOFTWARE' in section 'Bootstrap Icons'. */ ?>
 | 
			
		||||
<svg class="inline" width="1em" height="1em" viewBox="0 0 16 16" fill="#28a745" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
    <path fill-rule="evenodd" d="M15.817.613A.5.5 0 0 1 16 1v13a.5.5 0 0 1-.402.49l-5 1a.502.502 0 0 1-.196 0L5.5 14.51l-4.902.98A.5.5 0 0 1 0 15V2a.5.5 0 0 1 .402-.49l5-1a.5.5 0 0 1 .196 0l4.902.98 4.902-.98a.5.5 0 0 1 .415.103zM10 2.41l-4-.8v11.98l4 .8V2.41zm1 11.98l4-.8V1.61l-4 .8v11.98zm-6-.8V1.61l-4 .8v11.98l4-.8z" />
 | 
			
		||||
</svg>
 | 
			
		||||
							
								
								
									
										2
									
								
								views/templates/main_footer.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								views/templates/main_footer.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,2 @@
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
							
								
								
									
										17
									
								
								views/templates/main_header.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								views/templates/main_header.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,17 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="utf-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
			
		||||
    <title>MapGuesser</title>
 | 
			
		||||
    <link href="static/css/mapguesser.css" rel="stylesheet">
 | 
			
		||||
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&family=Roboto+Mono:wght@300;500&display=swap" rel="stylesheet">
 | 
			
		||||
    <link rel="icon" type="image/png" sizes="192x192" href="static/img/favicon/192x192.png">
 | 
			
		||||
    <link rel="icon" type="image/png" sizes="96x96" href="static/img/favicon/96x96.png">
 | 
			
		||||
    <link rel="icon" type="image/png" sizes="32x32" href="static/img/favicon/32x32.png">
 | 
			
		||||
    <link rel="icon" type="image/png" sizes="16x16" href="static/img/favicon/16x16.png">
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
    <div id="loading">
 | 
			
		||||
        <img src="static/img/loading.svg">
 | 
			
		||||
    </div>
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user