-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
73 lines (70 loc) · 2.67 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mibile first</title>
<link rel="stylesheet" type="text/css" href="dist/css/main.min.css">
<link href='https://fonts.googleapis.com/css?family=Signika:400,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrap-container">
<div class="header-player">
<div class="section-player">
<div class="section-player-bg">
<div class="overlay"></div>
</div>
<div class="section-player-info">
<div class="player-picture img-circle">
<picture>
<source srcset="assets/images/torres-profile-xsplus.jpg" media="(min-width: 768px)" />
<img srcset="assets/images/torres-profile.jpg"
alt="Sample pic" />
</picture>
</div>
<div class="player-name"><span>Fernando Torres</span></div>
<div class="container-team">
<?php echo file_get_contents("assets/images/icons/pin.svg"); ?>
<span class="player-team">Athlecitco Madrid,Spain</span>
</div>
</div>
</div>
<section class="section-palmares">
<div class="container-palmares">
<div class="selection-item">
<span class="icon"><?php echo file_get_contents("assets/images/icons/icn-cupworld.svg"); ?><span class="chiffre">9</span></span>
<span class="label-coupe">Coupe du monde</span>
</div>
<div class="selection-item">
<span class="icon"><?php echo file_get_contents("assets/images/icons/icn-cupworld.svg"); ?><span class="chiffre">92</span></span>
<span class="label-coupe">Coupe du monde</span>
</div>
<div class="selection-item">
<span class="icon"><?php echo file_get_contents("assets/images/icons/icn-cupworld.svg"); ?><span class="chiffre">203</span></span>
<span class="label-coupe">Coupe du monde</span>
</div>
</div>
</section>
</div>
<section class="section-news">
<div class="container-news">
<?php $i= 0; ?>
<?php while($i <= 4): ?>
<div class="single-news">
<span class="news-circle"></span>
<div class="news-date">
<span class="news-date-day">Vendredi</span>
<span class="news-date-hours">11:30</span>
</div>
<div class="news-text">
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete</p>
</div>
</div>
<?php $i++; ?>
<?php endwhile; ?>
</div>
</section>
</div>
<script src="dist/scripts/libs.min.js"></script>
</body>
</html>