44 lines
1.9 KiB
HTML
44 lines
1.9 KiB
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>
|