-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathtemplate.php
More file actions
36 lines (29 loc) · 842 Bytes
/
template.php
File metadata and controls
36 lines (29 loc) · 842 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
27
28
29
30
31
32
33
34
35
36
<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>PHP Fundamentals: <?= $title; ?></title>
<link href="../assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="../assets/css/php-fundamentals.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#">PHP Fundamentals: <?= $title; ?></a>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="mt-5"></h1>
</div>
</div>
<div class="row">
<!-- Content here -->
</div>
</div>
</body>
</html>