mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-20 12:20:53 +08:00
38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
|
|
<html>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<head>
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-139423787-1', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
<!-- End Google Analytics -->
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<title>AI Dungeon</title>
|
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="static/style.css">
|
|
</head>
|
|
<div class="topnav">
|
|
<a href="about.html">About</a>
|
|
<a href="http://patreon.com/AIDungeon/overview">Support</a>
|
|
<a href=".">Restart</a>
|
|
</div>
|
|
<body>
|
|
<script type="text/javascript" src="static/script.js">
|
|
</script>
|
|
<div id="console"></div>
|
|
</body>
|
|
<div id="buttons">
|
|
<button onclick="onButtonClick(0)">0</button>
|
|
<button onclick="onButtonClick(1)">1</button>
|
|
<button onclick="onButtonClick(2)">2</button>
|
|
<button onclick="onButtonClick(3)">3</button>
|
|
</div>
|
|
</html>
|