-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
52 lines (36 loc) · 1.6 KB
/
index.php
File metadata and controls
52 lines (36 loc) · 1.6 KB
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
49
50
51
52
<?php
/**
* General page template
*/
get_header(); ?>
<div class="site-content">
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class('wrap'); ?>>
<section class="section">
<div class="u-container">
<div class="flex has-sidebar">
<?php get_template_part( 'partials/menu-ui' ); ?>
<div class="sidebar-masthead section__sidebar flex__item">
<?php get_template_part( 'partials/masthead' ); ?>
</div>
<div class="section__content flex__item">
<div class="page-title">
<h1 class="h2 u-mt-pull">Base Content</h1>
<ul class="list page-anchors">
<li class="list__item">
<a href="#">Anchor</a>
</li>
</ul>
</div>
<div class="page-content">
<?php the_content(); ?>
<?php get_template_part( 'content', 'base' ); ?>
</div>
</div>
</div>
</div>
</section>
</article>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>