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

44 lines
1.9 KiB
HTML

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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>
<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">Mecha Game Rules</h1>
</header>
<!-- navigation buttons -->
<div class="ui container">
<div class="four ui buttons">
<button class="ui button centered" style="padding-left:0;padding-right:0;" onClick="printMarkdown('rules.md', document.getElementById('content'));">Rules</button>
<button class="ui button centered" style="padding-left:0;padding-right:0;" onClick="printCSV('cards.csv', document.getElementById('content'));">Cards</button>
<button class="ui button centered" style="padding-left:0;padding-right:0;" onClick="printCSV('card_concepts.csv', document.getElementById('content'));">Card Concepts</button>
<button class="ui button centered" style="padding-left:0;padding-right:0;" onClick="printHTML('feedback.html', document.getElementById('content'))">Feedback</button>
</div>
</div>
<!-- body content -->
<div class="ui container" id="content">This website requires Javascript to function.</div>
<!-- footer content -->
<footer>
<p>Copyright Kayne Ruse, KR Game Studios 2016-2017</p>
</footer>
<!-- end scripts -->
<script>
printMarkdown("rules.md", document.getElementById("content"));
</script>
</body>
</html>