-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (21 loc) · 718 Bytes
/
index.php
File metadata and controls
28 lines (21 loc) · 718 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
<?php
require 'app/Installer.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Practice test | EsyVet</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Practice test | EsyVet">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-exp.min.css">
<link rel="stylesheet" href="./assets/app.css">
</head>
<body>
<?php require 'layout/header.php'; ?>
<h3 class="p-t-1">Products</h3>
<?php require 'layout/products.php'; ?>
</body>
</html>