-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
100 lines (96 loc) · 2.92 KB
/
index.php
File metadata and controls
100 lines (96 loc) · 2.92 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
require('function.php');
$u_id = (!empty($_SESSION['user_id']))? $_SESSION['user_id'] : '';
$newProduct = getNewProduct();
debug('最新の3件:'.print_r($newProduct,true));
?>
<!-- head -->
<?php
$title = 'トップページ';
require('head.php');
?>
<!-- body -->
<body>
<!-- header -->
<?php
require('header.php');
?>
<!-- main -->
<main>
<?php
if(!empty($u_id) && $u_id !== '1'){
require('chat.php');
}
?>
<!-- work -->
<section id="work">
<div class="site-width">
<div class="work title txt-center">
<h2>Work</h2>
</div>
<div class="products">
<!-- logo -->
<div class="product left title txt-center">
<div class="container-sticky">
<h3>Products</h3>
<div class="product-img">
<img src="img/light-bulb.png" alt="">
</div>
</div>
</div>
<!-- portforio -->
<div class="product right">
<?php
foreach($newProduct as $key => $val){
?>
<div class="product-contents">
<a href="">
<div class="img">
<img src="<?php echo sanitize($val['pic1']); ?>" alt="">
</div>
</a>
<div class="article">
<p><?php echo sanitize($val['comment']); ?></p>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
</section>
<!-- abou -->
<section id="about">
<div class="site-width">
<div class="about title txt-center">
<h2>About</h2>
</div>
<div class="about-txt txt-center">
<p>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
テストテウそっテストテストテスト<br>
</p>
</div>
</div>
</section>
</main>
<!-- footer -->
<?php require('footer.php'); ?>