-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (24 loc) · 824 Bytes
/
index.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
<?php
// TODO: Add clear documentation of how to set this up locally.
require_once 'config.php';
$title = "Home Page";
// this is for <title>
$page_title = "This is the home page";
// This is for breadcrumbs if I want a custom title other than the default
$page_subheading = "Welcome to the homepage";
// This is the subheading
$custom_class = "home-page";
//custom CSS for this page only
include_once('includes/head.php');
?>
<div class="container <?php echo $custom_class; ?>">
<?php
include 'includes/masthead.php';
include 'includes/navigation.php';
?>
<section>
<?php include_once(INCLUDES_PATH . '/headline-page.php');?>
</section>
<?php include 'blocks/hero.php'; ?>
<!-- <?php include 'blocks/github-gist.php'; ?> -->
<?php include 'includes/feet.php';?>