-
Notifications
You must be signed in to change notification settings - Fork 9
/
awards.php
executable file
·37 lines (32 loc) · 974 Bytes
/
awards.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
<!DOCTYPE html>
<html lang="en">
<head>
<?php // The header includes the head tag and start of body
require "includes/head.php";
?>
<meta property="og:title" content="<?php echo $META['shortName'];?> "/>
<meta name="twitter:title" content="<?php echo $META['shortName'];?> "/>
<title>
<?php echo $META['shortName'];?> Awards
</title>
</head>
<body>
<?php require "includes/nav.php"; ?>
<main class="container">
<!-- NOTE: below is standard placeholder text for when the page is under
construction. please delete this entire <div class="row"> when ready to
add other content -->
<h2 class="indPageTitle">
Awards
</h2>
<div class="row">
<div class="col-12">
<p>
This information is not yet available. Thank you for your patience.
</p>
</div>
</div>
</main>
<?php include "includes/footer.php"; ?>
</body>
</html>