-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-copy.php
54 lines (37 loc) · 1.24 KB
/
index-copy.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
49
50
51
52
53
54
<?php get_header(); ?>
<div class="main-container">
<?php get_sidebar(); ?>
<div class="main-container-right clearfix">
<section>
<h2><?php bloginfo('name'); ?></h2>
<p>This is the index file
</p>
</section>
<aside>
<div class="blog_titles">Recent blogs
</div>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="blogs">
<div class="blog_thumb">
<?php the_post_thumbnail( 'thumbnail' )?>
</div>
<div class="blog_snippet">
<h4><?php the_title(); ?></h4>
<?php the_excerpt();?>
<a href="<?php the_permalink() ?>" class="read">Read more <i class="fa fa-arrow-right"></i>
</a>
</div>
</div>
<?php endwhile; else : ?>
<p>
<?php _e( 'Sorry, no posts matched your criteria.' ); ?>
</p>
<?php endif; ?>
</aside>
<?php get_footer(); ?>
</div>
</div>
<script src="<?php bloginfo('template_directory') ?>/assets/js/js-file.js"></script>
<?php wp_footer();?>
</body>
</html>