-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
42 lines (39 loc) · 1.34 KB
/
index.php
File metadata and controls
42 lines (39 loc) · 1.34 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
<!DOCTYPE html>
<html lang="ru" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<title>IT Developer</title>
</head>
<body>
<?php require "blocks/header.php" ?>
<div class="container mt-5">
<h3 class="mb-5">Наши статьи</h3>
<div class="d-flex flex-wrap">
<?php
for ($i=0; $i < 5; $i++):
?>
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Просто текст</h4>
</div>
<div class="card-body">
<img src="img/<?php echo ($i + 1) ?>.jpg" class="img-thumbnail">
<ul class="list-unstyled mt-3 mb-4">
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-outline-primary">Подробнее</button>
</div>
</div>
<?php endfor; ?>
</div>
</div>
<?php require "blocks/footer.php" ?>
</body>
</html>