-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive-goatsdeprecated.php
More file actions
78 lines (53 loc) · 1.86 KB
/
archive-goatsdeprecated.php
File metadata and controls
78 lines (53 loc) · 1.86 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
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
67
68
69
70
71
72
73
74
75
76
77
78
<!-- <?php
/*
Template Name: Portfolio Grid Template
*/
?> -->
<?php get_header(); ?>
<div class="goats">
<div class="container">
<div class="row">
<br>
<div class="col-md-12">
<br>
<h2>ENTER THE VOID. <br>FEEL THE RYTHYM.</h2>
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/bracket.png" class="center-block" width="90%"/>
<div class="col-xs-4">
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/placeholder.png" class="center-block" width="100%"/>
<h2>ZOE</h2>
</div>
<div class="col-xs-4">
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/placeholder.png" class="center-block" width="100%"/>
<h2>EMMA</h2>
</div>
<div class="col-xs-4">
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/placeholder.png" class="center-block" width="100%"/>
<h2>KAYLA</h2>
</div>
<!-- <?php the_content(); ?> -->
</div>
</div>
<div class="row listings">
<br><br>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="row">
<div class="col-md-6 portfolio-piece">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>">
<img src="<?php the_post_thumbnail_url(); ?>" class="center-block" width="100%"/>
</a>
<?php endif; ?>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
</div>
<?php endwhile; else: ?>
<div class="page-header">
<h1>Oh no!</h1>
</div>
<p>No content is appearing for this page!</p>
<?php endif; ?>
<span class="content_bar">
<hr/>
</span>
</div>
</div>
<?php get_footer(); ?>