-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitem.php
More file actions
27 lines (22 loc) · 697 Bytes
/
Copy pathitem.php
File metadata and controls
27 lines (22 loc) · 697 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title><?=$_GET['descr'] ?></title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<h1 style="text-align: center"><?=$_GET['descr'] ?></h1>
<?php if (isset($_GET['item'])):
$cur = $_GET['item'];
?>
<img src="imgs/<?= $cur ?>.png" class="img-responsive" alt="pic">
<?php endif; ?>
<br/><a href="/" style="font-size: 30px" title="go back"><i>go back</i></a>
</div>
</body>
</html>