-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (16 loc) · 758 Bytes
/
index.php
File metadata and controls
22 lines (16 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$current = 'story';
include 'assets/functions.php';
include 'partials/header.php';
?>
<section class="d-flex flex-column vh-100 p-3 " >
<?php include 'partials/nav.php'; ?>
<div id="IMG__home" class="bg-dark flex-fill mt-3 storyBG blend--multiply" >
<div class="col-md-5 d-flex flex-column justify-content-center p-lg-5 mx-auto h-100 text-center">
<h1 class="display-4 font-weight-normal">The Tale of Two Designers</h1>
<p class="lead font-weight-normal">Continually utilize highly efficient opportunities after orthogonal strategic theme areas. Distinctively provide access.</p>
<a class="btn btn-outline-light" href="#">Begin Adventure</a>
</div>
</div>
</section>
<?php include 'partials/footer.php'; ?>