-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
33 lines (28 loc) · 735 Bytes
/
page.php
File metadata and controls
33 lines (28 loc) · 735 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
30
31
32
33
<?php
/**
* Template Name: Home Page
* @package WordPress
*/
get_header();
?>
<main class="main">
<!-- Page Title -->
<div class="page-title" data-aos="fade">
<div class="container">
<h1><?php the_title();?></h1>
<nav class="breadcrumbs">
<ol>
<li><a href="<?php echo esc_url(home_url());?>"><?php echo esc_html__("Home")?></a></li>
<li class="current"><?php the_title();?></li>
</ol>
</nav>
</div>
</div><!-- End Page Title -->
<!-- Starter Section Section -->
<section id="starter-section" class="starter-section section">
<div class="container" data-aos="fade-up">
<?php the_content();?>
</div>
</section><!-- /Starter Section Section -->
</main>
<?php get_footer(); ?>