-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_vue.php
47 lines (42 loc) · 1.33 KB
/
index_vue.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
include __DIR__ . "/db.php"
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- my css -->
<link rel="stylesheet" href="css/app.css">
<title>Php Dischi</title>
</head>
<body>
<!-- site container -->
<div class="site-container" id="root">
<!-- nav -->
<?php include __DIR__ . "/partials/header.php" ?>
<!-- nav -->
<!-- main -->
<main>
<div class="wrapper">
<div class="cards-container">
<div class="card" v-for="disc in discs">
<div class="card-top">
<img :src="disc.poster" :alt="disc.title">
<h3 class="title">{{ disc.title }}</h3>
</div>
<div class="card-bottom">
<span class="author">{{ disc.author }}</span>
<span class="year">{{ disc.year }}</span>
</div>
</div>
</div>
</div>
</main>
<!-- /main -->
</div>
<!-- /site container -->
<!-- my script -->
<script src="js/script.js"></script>
</body>
</html>