forked from haleyqincornell/class-05-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (21 loc) · 667 Bytes
/
index.php
File metadata and controls
29 lines (21 loc) · 667 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
<?php
$page_title = 'Home';
$nav_home_class = 'active_page';
$nav_citations_class = '';
$nav_cooking_class = '';
?>
<!DOCTYPE html>
<html lang="en">
<?php include 'includes/meta.php' ?>
<body>
<?php include 'includes/header.php' ?>
<main>
<h2>INFO/CS 2300; NBA 5301</h2>
<p>This website is rendered server-side in PHP.</p>
<!-- Note: Avoid outputting your PHP version in your production HTML. -->
<!-- Malicious actors may use the version to try and hack your website. -->
<p>You're running PHP version: <strong><?php echo phpversion(); ?></strong>.</p>
</main>
<?php include 'includes/footer.php' ?>
</body>
</html>