bouquins-bchs/index.html
2016-12-30 19:14:44 +01:00

47 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<title>Bouquins</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<link rel="stylesheet" href="bootstrap.min.css">
<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">
</head>
<body>
<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>
</div>
<script src="vue.min.js"></script>
<script src="index.js"></script>
</body>
</html>