bouquins-bchs/index.html

47 lines
1.5 KiB
HTML
Raw Normal View History

2016-12-18 17:28:19 +00:00
<!DOCTYPE html>
2016-12-30 18:14:44 +00:00
<html lang="fr">
2016-12-18 17:28:19 +00:00
<head>
2016-12-30 16:16:43 +00:00
<title>Bouquins</title>
2016-12-30 17:46:03 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2016-12-18 17:28:19 +00:00
<meta charset="utf-8" />
2016-12-30 17:46:03 +00:00
<link rel="stylesheet" href="bootstrap.min.css">
2016-12-30 16:16:43 +00:00
<link rel="preload" href="cgi-bin/bouquins/books">
<link rel="preload" href="index.js" as="script">
<link rel="preload" href="vue.min.js" as="script">
<link rel="prefetch" href="cgi-bin/bouquins/books">
<link rel="prefetch" href="index.js">
<link rel="prefetch" href="vue.min.js">
2016-12-18 17:28:19 +00:00
</head>
<body>
2016-12-30 18:14:44 +00:00
<div class="container" id="app">
<div class="jumbotron">
<h1>Bouquins</h1>
<p>Cette bibliothèque contient actuellement <strong>{{ booksCount }}</strong> livres et BD en format papier ou électronique.</p>
</div>
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>Titre</th>
<th>Serie</th>
<th>Auteur(s)</th>
</tr>
<tr v-for="book in books">
<td>{{ book.title }}</td>
<td>
{{ book.series ? book.series.name : '' }}
<span class="badge">{{ book.series ? book.series.idx : '' }}</span>
</td>
<td>
<template v-for="author in book.authors">
{{ author.name }}
</template>
</td>
</tr>
</table>
</div>
2016-12-30 17:18:11 +00:00
</div>
2016-12-30 16:16:43 +00:00
<script src="vue.min.js"></script>
<script src="index.js"></script>
2016-12-18 17:28:19 +00:00
</body>
</html>