parent
6090d43b7c
commit
4c0a249e4d
14
book.html
14
book.html
@ -4,11 +4,11 @@
|
||||
<title>Livre</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
||||
<link rel="preload" href="/js/book.min.js" as="script">
|
||||
<link rel="preload" href="/js/vue.min.js" as="script">
|
||||
<link rel="prefetch" href="/js/book.min.js">
|
||||
<link rel="prefetch" href="/js/vue.min.js">
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<link rel="preload" href="js/book.min.js" as="script">
|
||||
<link rel="preload" href="js/vue.min.js" as="script">
|
||||
<link rel="prefetch" href="js/book.min.js">
|
||||
<link rel="prefetch" href="js/vue.min.js">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="app">
|
||||
@ -60,7 +60,7 @@
|
||||
</div>
|
||||
<!-- TODO cover -->
|
||||
</div>
|
||||
<script src="/js/vue.min.js"></script>
|
||||
<script src="/js/book.min.js"></script>
|
||||
<script src="js/vue.min.js"></script>
|
||||
<script src="js/book.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
16
index.html
16
index.html
@ -4,11 +4,11 @@
|
||||
<title>Bouquins</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
||||
<link rel="preload" href="/js/index.min.js" as="script">
|
||||
<link rel="preload" href="/js/vue.min.js" as="script">
|
||||
<link rel="prefetch" href="/js/index.min.js">
|
||||
<link rel="prefetch" href="/js/vue.min.js">
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<link rel="preload" href="js/index.min.js" as="script">
|
||||
<link rel="preload" href="js/vue.min.js" as="script">
|
||||
<link rel="prefetch" href="js/index.min.js">
|
||||
<link rel="prefetch" href="js/vue.min.js">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="app">
|
||||
@ -31,7 +31,7 @@
|
||||
<th>Serie</th>
|
||||
</tr>
|
||||
<tr v-for="book in books">
|
||||
<td><span class="glyphicon glyphicon-book"></span><a :href="'/book.html?id='+book.id">{{ book.title }}</a></td>
|
||||
<td><span class="glyphicon glyphicon-book"></span><a :href="'book.html?id='+book.id">{{ book.title }}</a></td>
|
||||
<td>
|
||||
<template v-for="author in book.authors">
|
||||
<span class="glyphicon glyphicon-user"></span>{{ author.name }}
|
||||
@ -47,7 +47,7 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/js/vue.min.js"></script>
|
||||
<script src="/js/index.min.js"></script>
|
||||
<script src="js/vue.min.js"></script>
|
||||
<script src="js/index.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user