forked from skillcrush/103-skillcrush_starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
32 lines (29 loc) · 1.1 KB
/
front-page.php
File metadata and controls
32 lines (29 loc) · 1.1 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
<?php
/**
* The template for the homepage
*
* @package WordPress
* @subpackage Skillcrush_Starter
* @since Skillcrush Starter 2.0
*/
get_header(); ?>
<section class="home-page">
<div class="main-content">
<div class="content">
<?php while ( have_posts() ): the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<div class="social-btns"> <!-- populate or remove as many of these as you want -->
<a href="" class="soc-icon tw"><span class="screen-reader-text">Twitter</span></a>
<a href="" class="soc-icon fb"><span class="screen-reader-text">Facebook</span></a>
<a href="" class="soc-icon ln"><span class="screen-reader-text">LinkedIn</span></a>
<a href="" class="soc-icon db"><span class="screen-reader-text">Dribble</span></a>
<a href="" class="soc-icon gh"><span class="screen-reader-text">GitHub</span></a>
<a href="" class="soc-icon in"><span class="screen-reader-text">Instagram</span></a>
</div>
<a href="<?php echo site_url('/blog/'); ?>" class="btn">View My Blog</a>
<?php endwhile; ?>
</div>
</div>
</section>
<?php get_footer(); ?>