24 lines
747 B
HTML
24 lines
747 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html
|
||
|
|
xmlns:th="http://www.thymeleaf.org"
|
||
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
|
|
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
|
||
|
|
layout:decorate="~{layout/default_layout}"
|
||
|
|
>
|
||
|
|
<th:block layout:fragment="head" id="head">
|
||
|
|
<script type="text/javascript" th:src="@{/js/spider.js}"></script>
|
||
|
|
<!-- <link th:href="@{/css/puzzle.css}" rel="stylesheet" />-->
|
||
|
|
<link th:href="@{/css/spider.css}" rel="stylesheet" />
|
||
|
|
|
||
|
|
<script th:inline="javascript">
|
||
|
|
|
||
|
|
</script>
|
||
|
|
<script type="text/javascript" th:src="@{/js/user.js}"></script>
|
||
|
|
</th:block >
|
||
|
|
<th:block layout:fragment="content">
|
||
|
|
<div id="game-container">
|
||
|
|
<canvas id="gameCanvas"></canvas>
|
||
|
|
</div>
|
||
|
|
</th:block>
|
||
|
|
</html>
|