-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarter-page.php
48 lines (34 loc) · 1.21 KB
/
starter-page.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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<?php include 'head.html'; ?>
<body class="starter-page-page">
<?php include 'header.html'; ?>
<main class="main">
<!-- Page Title -->
<div class="page-title dark-background">
<div class="container d-lg-flex justify-content-between align-items-center">
<h1 class="mb-2 mb-lg-0">Starter Page</h1>
<nav class="breadcrumbs">
<ol>
<li><a href="index.php">Home</a></li>
<li class="current">Starter Page</li>
</ol>
</nav>
</div>
</div><!-- End Page Title -->
<!-- Starter Section Section -->
<section id="starter-section" class="starter-section section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Starter Section</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up">
<p>Use this page as a starter for your own custom pages.</p>
</div>
</section><!-- /Starter Section Section -->
</main>
<?php include 'footer-preloader.html'; ?>
<?php include 'script.html'; ?>
</body>
</html>