flatisfy/flatisfy/web/static/index.html

31 lines
714 B
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Flatisfy</title>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
<h1>Flatisfy</h1>
<table>
<thead>
<tr>
<th>Titre</th>
<th>Lien</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
}
})
</script>
</body>
</html>