-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto.php
32 lines (31 loc) · 912 Bytes
/
photo.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
<html>
<head>
<title>iBlog</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/iblog.css">
</head>
<body>
<?php include "navbar.php" ?>
<div class="header-content">
<div class="container">
<div class="header-content-title">
<h1 class="text-center" id="title">图片墙</h1>
</div>
</div>
</div>
<div class="photo-container">
<div class="container">
<div id="data">
<photo-box v-for="photo in datalist" v-bind:psrc="photo"></photo-box>
</div>
</div>
</div>
<?php include "script.php" ?>
<script>
$(document).ready(function(){
photoInit();
});
</script>
</body>
</html>