-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
40 lines (27 loc) · 1.38 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
<?php get_header(); ?>
<div id="container">
<div id="content">
<div id="titleContent">
<img src="<?php the_post_thumbnail_url(); ?>" class="featured" />
<div class="leftSide">
<h2><?php the_title(); ?></h2>
<h3><?php echo(get_post_meta(get_the_ID(), 'when', true));?></h3>
<div class="context"><?php echo(get_post_meta(get_the_ID(), 'course', true));?></div>
<div class="credit"><?php echo(get_post_meta(get_the_ID(), 'team', true));?></div>
</div>
</div>
<div id="main">
<div class="text">
<?php the_post(); ?>
<?php echo(the_content()); ?>
</div>
<!-- <div class="youtubeEmbed">
<iframe width="560" height="315" src="https://www.youtube.com/embed/MaSbL68Hj4A" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<div class="youtubeEmbed">
<iframe width="560" height="315" src="https://www.youtube.com/embed/YTqLvEaBw_g" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div> -->
</div>
</div><!-- #content -->
</div><!-- #container -->
<?php get_footer(); ?>