-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage.php
44 lines (28 loc) · 783 Bytes
/
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
<?php get_header(); ?>
<div class="content">
<div class="stickywrap">
<h3 class="stickywrap-heading">
<i class="fas fa-pencil"></i>
</h3>
<div class="stickywrap-inner">
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class(); ?>>
<header class="entry-header group">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry themeform">
<?php the_content(); ?>
<div class="clear"></div>
</div><!--/.entry-->
<div class="entry-footer group">
<div class="entry-comments themeform">
<?php comments_template(); ?>
</div>
</div>
</article>
<?php endwhile; ?>
</div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>