-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing-page.php
30 lines (29 loc) · 970 Bytes
/
landing-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
<?
defined('ABSPATH') OR exit;
/**
* Template Name: Landing Page
* Description: A full-width template with no header or sidebar
*
* @package WordPress
* @subpackage WP-Skeleton
*/
get_header();
get_template_part( 'sub-header', 'index' ); //the header stuffs
get_template_part( 'menu', 'index' ); //the menu + logo/site title
?>
<main id="main-content">
<div class="super-container interior-page">
<div id="primary" class="full-width no-padding">
<div id="content" class="no-padding">
<? the_post(); ?>
<article id="post-<? the_ID(); ?>" <? post_class(); ?> role="article">
<div class="entry-content no-padding">
<? the_content(); ?>
<? edit_post_link( __( 'Edit', 'themename' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</article><!-- #post-<? the_ID(); ?> -->
</div><!-- #content -->
</div><!-- #primary -->
</div>
</main><!-- #main-content -->
<? get_footer(); ?>