-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagenda.php
More file actions
41 lines (24 loc) · 1016 Bytes
/
agenda.php
File metadata and controls
41 lines (24 loc) · 1016 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
38
39
40
41
<?php
/*
Template Name: Agenda
*/
get_header() ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="row post" style="padding-top:20px;">
<div class="post well container">
<div class="page-header">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
</div>
<?php if(has_post_thumbnail()){
echo '<div class="postthumbnail">';
the_post_thumbnail( array(700, 500) );
echo '</div>';
} ?>
<div class="post-content">
<?php the_content(); ?>
<iframe src="https://www.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&mode=AGENDA&height=600&wkst=1&hl=pt_BR&bgcolor=%23F5F5F5&src=rq9gtdpm15oi68fto628qvu8vs%40group.calendar.google.com&color=%23711616&ctz=America%2FSao_Paulo" style="width:100%;height:;border-width:0;" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>