1
0
Fork 0
my_spells/index.html
2016-08-12 14:40:40 -05:00

116 lines
5.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>My Spells</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.1.3/material.teal-pink.min.css" />
<link rel="stylesheet" href="./dist/getmdl-select.min.css" />
<link rel="stylesheet" href="./assets/app.css" />
<link rel="stylesheet" href="./assets/print.css" />
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<div data-template="system-list"></div>
<div class="mdl-layout-spacer"></div>
<button data-action="print" class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-color-text--white">
<span class="mdl-badge" data-badge="0">
<i class="material-icons">print</i>
Print
</span>
</button>
<div data-action-details="" role="button" tabindex="0"><i class="material-icons">keyboard_arrow_left</i></div>
</div>
</header>
<aside class="mdl-layout__drawer">
<span class="mdl-layout-title mdl-color-text--pink-600">
<i class="material-icons">whatshot</i>
My Spells
</span>
<nav class="mdl-navigation">
<form>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<div data-template="search-field"></div>
<label class="mdl-textfield__label">
<i class="material-icons">search</i>
Search
</label>
</div>
</form>
<form data-template="class-list">
</form>
</nav>
</aside>
<main class="mdl-layout__content">
<div class="page-content">
<form class="mdl-grid" id="selected-spells" data-selected>
<table id="spell-list-container" class="mdl-cell mdl-cell--12-col mdl-cell--6-col-desktop mdl-data-table mdl-shadow--2dp">
<thead>
<tr data-template="table-sort"></tr>
</thead>
<tbody data-template="spell-list"></tbody>
</table>
<article data-template="spell-details" class="mdl-cell mdl-cell--12-col mdl-cell--6-col-desktop mdl-color-text--grey-600"></article>
</form>
</div>
</main>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__right-section">
<div class="mdl-logo hide-phone">My Spells</div>
<ul class="mdl-mini-footer__link-list">
<li>
<a class="hide-phone mdl-navigation__link mdl-color-text--teal-100" href="https://github.com/sharpshark28/my_spells">
<i class="material-icons">code</i>
Fork Me On Github
</a>
</li>
<li>
<a class="mdl-navigation__link" href="https://dark12222000.github.io/lootsplit/">
<i class="material-icons">local_atm</i>
Loot Split
</a>
</li>
<li>
<a class="mdl-navigation__link" href="http://paulvmoreau.github.io/BeltFedNPCs/">
<i class="material-icons">people</i>
NPC Generator
</a>
</li>
</ul>
</div>
</footer>
<div id="toast" class="mdl-js-snackbar mdl-snackbar">
<div class="mdl-snackbar__text"></div>
<button class="mdl-snackbar__action" type="button"></button>
</div>
</div>
<table class="printonly">
<thead>
<tr>
<th>Spell Name</th>
<th>Level</th>
<th>Description</th>
</tr>
</thead>
<tbody data-template="spell-list-print">
</tbody>
</table>
<script src="https://code.getmdl.io/1.1.3/material.min.js"></script>
<script src="./dist/getmdl-select.min.js"></script>
<script src="./dist/jquery.min.js"></script>
<script src="./dist/monkberry.js"></script>
<script src="./dist/remarkable.min.js"></script>
<script src="./dist/clipboard.min.js"></script>
<script src="./dist/view.js"></script>
<script src="./dist/app.js"></script>
</body>
</html>