Initial commit.
[cf_tmp.git] / programme.php
blob05eb8b79675c0376847520f2e6bc4fb2bee8dae0
1 <?php
2 /*
3 Template Name: Programme
4 */
5 define('WP_USE_THEMES', false); get_header();
6 ?>
8 <div id="container">
9 <div id="all">
10 <div id="title_front">
11 <?php bloginfo('name'); ?>
12 </div><!--title_front-->
13 <?php
14 $works = get_posts("numberposts=0");
15 foreach ($works as $work) { ?>
16 <div class="work_front"><a href="<?php print $work->guid; ?>">
17 <?php print $work->post_title; ?></a> <?php the_codepoint(); ?>
18 </div><!--work_front-->
19 <?php
22 <div id="colophon">
23 Circular Facts is a collaborative endeavor between three European contemporary
24 art organizations: Casco – Office for Art, Design and Theory (Utrecht),
25 Objectif Exhibitions (Antwerp), The Showroom (London) in partnership with Kunst
26 Halle Sankt Gallen and Electric Palm Tree.
27 </div><!--colophon-->
28 </div><!--all-->
30 <div id="aside">
31 <div id="menu">
32 <ul>
33 <li>
34 <a href="<?php bloginfo('url') ?>">Index</a>
35 <?php
36 $args = array("theme_location" => "primary", "container" => "");
37 wp_nav_menu($args);
39 </li>
40 </ul>
41 </div><!--menu-->
43 </div><!--aside-->
44 </div><!--container-->
46 <?php get_footer(); ?>