Initial commit.
[cf_tmp.git] / index.php
blob47eeb24973272c5eab89017c3c67cbdd6babb419
1 <?php define('WP_USE_THEMES', false); get_header(); ?>
3 <?php
4 $categories = get_categories();
5 #shuffle($categories);
6 $artists = read_data($categories);
7 ?>
9 <div id="container">
10 <div id="all">
11 <div id="title_front">
12 <?php bloginfo('name'); ?>
13 </div><!--title-->
14 <div id="diagram">
15 <?php
16 diagram($artists);
18 </div><!--diagram-->
19 <div id="colophon">
20 Circular Facts is a collaborative endeavor between three European contemporary
21 art organizations: Casco – Office for Art, Design and Theory (Utrecht),
22 Objectif Exhibitions (Antwerp), The Showroom (London) in partnership with Kunst
23 Halle Sankt Gallen and Electric Palm Tree.
24 </div><!--colophon-->
25 </div><!--all-->
27 <div id="aside">
28 <div id="menu">
29 <ul>
30 <li>
31 Index
32 <?php
33 $args = array("theme_location" => "primary", "container" => "");
34 wp_nav_menu($args);
36 </li>
37 </ul>
38 </div>
40 </div><!--aside-->
41 </div><!--container-->
44 <?php get_footer(); ?>