-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
66 lines (51 loc) · 1.37 KB
/
single.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
55
56
57
58
59
60
61
62
63
64
65
66
<?php get_header();?>
<?php get_template_part('menu');?>
<div id="body">
<div id="featured">
<img src="<?php echo get_template_directory_uri(); ?>/images/the-beacon.jpg" alt="">
<div>
<h2>the beacon to all mankind</h2>
<span>Our website templates are created with</span>
<span>inspiration, checked for quality and originality</span>
<span>and meticulously sliced and coded.</span>
<a href="blog-single-post.html" class="more">read more</a>
</div>
</div>
<div id="post-it">
<h1>HELLO WORLD</h1>
<P>
<?php if (have_posts()) : ?>
<?php while (have_posts()) :the_post(); ?>
<h2> <?php the_title();?> </h2>
<?php the_content();?>
<?php endwhile; ?>
<?php endif; ?>
</P>
</div>
<ul>
<li>
<a href="gallery.html">
<img src="<?php echo get_template_directory_uri(); ?>/images/the-father.jpg" alt="">
<span>the father</span>
</a>
</li>
<li>
<a href="gallery.html">
<img src="<?php echo get_template_directory_uri(); ?>/images/the-actor.jpg" alt="">
<span>the actor</span>
</a>
</li>
<li>
<a href="gallery.html">
<img src="<?php echo get_template_directory_uri(); ?>/images/the-nerd.jpg" alt="">
<span>the nerd</span>
</a>
</li>
</ul>
</div>
<div id="footer">
<?php get_footer();?>
</div>
<?php wp_footer(); ?>
</body>
</html>