-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (30 loc) · 771 Bytes
/
index.php
File metadata and controls
37 lines (30 loc) · 771 Bytes
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
<?php
/**
* Main index template.
*
* @author Alejandor Mostajo
* @license MIT
* @package Amostajo\DevTemplates
* @version 1.0.0
*/
?>
<?php get_header() ?>
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="intro-text">
<img class="img-responsive" src="<?php echo get_template_directory_uri() ?>/img/logo.png" alt="">
<h1 class="name">Wordpress Development Templates</h1>
<hr class="star-light">
<span class="skills">A powerful framework for custom themes and plugins</span>
</div>
</div>
</div>
</div>
</header>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content() ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer() ?>