forked from julienszabados/feedsound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
57 lines (55 loc) · 2.29 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
<?php
require 'app/core/init_var.php';
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<?php include STATIC_VIEWS.'/head.php'; ?>
</head>
<body>
<?php include STATIC_VIEWS.'/modals/add-sound.php'; ?>
<div class="container-fluid">
<header class="row">
<div id="logo" class="pull-left">
<h3>Simplesound</h3>
</div>
<div class="col-md-4">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" id="searchsong" placeholder="Rechercher...">
<div class="input-group-addon"><span class="glyphicon glyphicon-search"></span></div>
</div>
</div>
</div>
</header>
<section id="navigation">
<button id="add-sound" data-toggle="modal" data-target="#add-sound" class="btn btn-success">Ajouter un son</button>
</section>
<section id="content-site">
<div class="page">
<div class="soundlist row">
<div class="sound col-md-3 col-sm-6">
<iframe src="http://www.youtube.com/embed/iqMlCnWIBPU"></iframe>
</div>
<div class="sound col-md-3 col-sm-6">
<iframe src="http://www.youtube.com/embed/iqMlCnWIBPU"></iframe>
</div>
<div class="sound col-md-3 col-sm-6">
<iframe src="http://www.youtube.com/embed/iqMlCnWIBPU"></iframe>
</div>
<div class="sound col-md-3 col-sm-6">
<iframe src="http://www.youtube.com/embed/iqMlCnWIBPU"></iframe>
</div>
<div class="sound col-md-3 col-sm-6">
<iframe src="http://www.youtube.com/embed/iqMlCnWIBPU"></iframe>
</div>
<div class="sound col-md-3 col-sm-6">
<iframe src="http://www.youtube.com/embed/iqMlCnWIBPU"></iframe>
</div>
</div>
</div>
</section>
</div>
<?php include STATIC_VIEWS.'/footer.php'; ?>
</body>
</html>