WP Theme and Plugin Added
This commit is contained in:
19
juconnect-strict-theme-v3/juconnect-strict/index.php
Normal file
19
juconnect-strict-theme-v3/juconnect-strict/index.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php get_header(); ?>
|
||||
|
||||
<section class="section">
|
||||
<div class="section__head">
|
||||
<h1 class="h1"><?php bloginfo('name'); ?></h1>
|
||||
<p class="muted"><?php bloginfo('description'); ?></p>
|
||||
</div>
|
||||
|
||||
<div class="stack">
|
||||
<?php if (have_posts()): while (have_posts()): the_post(); ?>
|
||||
<article class="card card--pad">
|
||||
<h2 class="h3"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
|
||||
<p class="muted"><?php the_excerpt(); ?></p>
|
||||
</article>
|
||||
<?php endwhile; endif; ?>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user