forked from arjenvdbrink/rafael
-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-gemeente.php
68 lines (59 loc) · 2.47 KB
/
single-gemeente.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
<?php
/**
* Sample template for displaying single gemeente posts.
* Save this file as as single-gemeente.php in your current theme.
*
* This sample code was based off of the Starkers Baseline theme: http://starkerstheme.com/
*/
get_header(); ?>
<?php if (have_posts()) while (have_posts()) : the_post(); ?>
<table border="2" align="left" width="100%">
<tr>
<td width="100" height="24"><strong>Gemeente</strong></td>
<td width="550" height="24"><h1><?php the_title(); ?></h1></td>
</tr>
<tr>
<td width="100" height="50"><strong>Omschrijving</strong></td>
<td width="550" height="50"><?php the_content(); ?></td>
</tr>
<tr>
<td width="100" height="24"><strong>Website</strong></td>
<td width="550" height="24"><a
href="<?php print_custom_field('website'); ?>"><?php print_custom_field('website'); ?></a>
</td>
</tr>
<tr>
<td width="100" height="20"><strong>Contactpersoon</strong></td>
<td width="550" height="20"><?php print_custom_field('contactpersoon'); ?></td>
</tr>
<tr>
<td width="100" height="24"><strong>Telefoon</strong><br/></td>
<td width="550" height="24"><?php print_custom_field('telefoonnummer'); ?> </td>
</tr>
<tr>
<td width="100" height="24"><strong>Emailadres</strong><br/></td>
<td width="550" height="24"><?php print_custom_field('emailadres'); ?> </td>
</tr>
<tr>
<td width="100" height="20"><strong>Postadres</strong></td>
<td width="550" height="20"><?php print_custom_field('postadres'); ?> </td>
</tr>
<tr>
<td width="100" height="20"><strong>Samenkomsten</strong></td>
<td width="550" height="20"><?php print_custom_field('samenkomsten'); ?> </td>
</tr>
<tr>
<td valign="center" width="100" height="300"><strong> </strong></td>
<td valign="center" width="550" height="300">
<?php if (function_exists('pronamic_google_maps')) {
pronamic_google_maps(array(
'width' => 700,
'height' => 300
));
}; ?>
</td>
</tr>
</table>
<?php endwhile; // end of the loop. ?>
</div><!--end container (in header.php)-->
<?php get_footer(); ?>