-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-collaborations.php
31 lines (31 loc) · 1.13 KB
/
archive-collaborations.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
<?php
/*
Template Name: Collaborations
*/
?>
<?php get_header(); ?>
<main>
<div class="container">
<div class="modding-section">
<h1>Collaborations</h1>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<section class="mod-info">
<div class="row">
<div class="col-12 col-md-6"><a href="<?php the_permalink(); ?>" class="modding-pic"><figure><?php the_post_thumbnail( 'full' ); ?></figure></a></div>
<div class="col-12 col-md-6">
<h2 class="modding-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="mods-desc"><?php the_content(); ?></div>
<p class="modding-perk">Mod type: <?php the_terms( $post->ID, 'type_collab' , '' ) ?></p>
<p class="modding-perk">Mod for: <?php the_terms( $post->ID, 'game_collab' , '' ) ?></p>
<p class="modding-perk">Platforms: <?php the_terms( $post->ID, 'platform_collab' , '' ) ?></p>
<a href="<?php the_permalink(); ?>" class="read-more">Read more</a>
</div>
</div>
</section>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</main>
<?php get_footer();