32 lines
2.1 KiB
HTML
32 lines
2.1 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>Loud Tablet</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="css/app.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container" id="app">
|
|
<h2>Loud List</h2>
|
|
<options :ui="settings.ui"></options>
|
|
<people-table :users="settings.users"></people-table>
|
|
|
|
<!-- <input-card v-for="n in allInputs" v-bind:title="n.title" v-bind:id="n.id" v-bind:input_options="inputTypes" v-bind:input="n.input"></input-card> -->
|
|
|
|
<!-- <show-message v-if="settings.ui.showMessage" v-bind:message="settings.message"></show-message> -->
|
|
<!-- <restart-game v-if="settings.ui.gameEnding"></restart-game> -->
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/sortablejs@1.7.0/Sortable.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Vue.Draggable/2.15.0/vuedraggable.min.js"></script>
|
|
<script src="js/Loud_Tablet.js"></script>
|
|
</body>
|
|
|
|
</html>
|