This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mechaimmensewarfare.com/public_html/index.html
T
2017-08-28 12:56:55 +10:00

45 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/semantic-ui/2.2.8/semantic.min.css">
<link rel="stylesheet" type="text/css" href="styles/shared.css" />
</head>
<body>
<!-- header content -->
<header>
<!-- header -->
<h1 class="ui header centered"><a href="http://mecha.krgamestudios.com">Mecha: Immense Warfare Game Rules</a></h1>
</header>
<!-- navigation buttons -->
<div class="ui container">
<div class="four ui buttons">
<button class="ui button centered noPadding" onClick="printMarkdown('rules.md', document.getElementById('content'));">Rules</button>
<button class="ui button centered noPadding" onClick="printCSV('cards.csv', document.getElementById('content'));">Cards</button>
<button class="ui button centered noPadding" onClick="printCSV('card_concepts.csv', document.getElementById('content'));">Card Concepts</button>
<button class="ui button centered noPadding" onClick="printHTML('feedback.html', document.getElementById('content'))">Feedback</button>
</div>
</div>
<!-- body content -->
<div class="ui container" id="content">Loading content... (this website requires Javascript to function)</div>
<!-- footer content -->
<footer>
<p>Copyright Kayne Ruse, <a href="http://krgamestudios.com">KR Game Studios</a> 2016-2017</p>
</footer>
<!-- Javascript -->
<script src="node_modules/markdown-it/dist/markdown-it.js"></script>
<script src="node_modules/markdown-it-container/dist/markdown-it-container.js"></script>
<script src="node_modules/markdown-it-inline-comments/dist/markdown-it-inline-comments.js"></script>
<script src="tsorter.min.js"></script>
<script src="utilities.js"></script>
<script>
printMarkdown("rules.md", document.getElementById("content"));
</script>
</body>
</html>