}
#content.single {
padding-top:0;
+ margin-left:200px;
}
+
#nextprev {
padding:0 50px 10px 150px;
}
margin-bottom:2em;
text-align:center;
}
+.projectlist {
+ position:absolute;
+ top:130px;
+}
+.projectlist li {
+ text-transform: lowercase !important;
+}
$this->template = isset($this->entry->config->template) ?
$this->entry->config->template . '.' . $this->response_format . '.tpl' :
- 'single.' . $this->response_format . '.tpl';
+ 'single-wprojects.' . $this->response_format . '.tpl';
}
# if page (file in PAGES dir)
template = page\r
-title = Contact\r
+title = contact\r
--\r
\r
1242 Market St, FL 2 \r
</div>\r
-->\r
\r
-Gabriel Dunne (b. 1981, San Francisco) works with multiple mediums and technologies to explore audiovisual vibration, space, structures, and rhythms of the perceivable and imperceivable universe. His work has shown internationally in solo and group exhibitions, performances, galleries, public space, and has featured in music videos, sound works, and film. \r
+Gabriel Dunne (b. 1981, San Francisco) works with many mediums and technologies to explore audiovisual vibration, space, structures, and rhythms of the perceivable and imperceivable universe. His work has shown internationally in solo and group exhibitions, performances, galleries, public space, and has featured in music videos, sound works, and film. \r
\r
He is a designer and consultant for international clients and collaborators, and serves as an instructor for youth and adult. \r
<br />\r
<ul class="nav">
<li class="home"><a href="<?=WEB_ROOT?>"><?=SITE_TITLE?></a></li>
- <? if (!isset($entry->is_single)) {
+ <? // if (!isset($entry->is_single)) {
$en = get_pages('', $args = array(
'recursive' => false,
'order_by' => 'alpha',
<? foreach($dirs as $e) : ?>
<li><a href="<?=$e->url?>"><?=$e->title?></a></li>
<? endforeach; ?>
- <? foreach($en as $e) : /*print_r($e);*/ ?>
+ <? foreach($en as $e) : ?>
<li>
- <a <?=$request['basename'] == $e->title ? 'class="selected"' : ''?> href="<?=$e->url?>"><?=$e->title?></a><? if ($e->title == 'tag' && isset($tag)): ?> <span class="tag"><?=$tag;?></span><? endif; ?>
+ <a <?=$request['basename'] == $e->title ? 'class="selected"' : ''?> href="<?=$e->url?>"><?=$e->title?></a>
+
+ <? if ($e->title == 'tag' && isset($tag)): ?> <span class="tag"><?=$tag;?></span><? endif; ?>
+
</li>
<? endforeach; ?>
- <? } ?>
+ <? //} ?>
<!--
<li>
--- /dev/null
+<?
+$m = new Model(get_request('projects/'), 0);
+$projects = $m->entries;
+?>
+<ul class="projectlist">
+<? foreach($projects as $entry): ?>
+ <li>
+ <a href="<?=$entry->url;?>"><?=$entry->title;?></a>
+ </li>
+<? endforeach; ?>
+</ul>
<? eval('?>' . $entry->content); ?>
<? endif; ?>
- <ul class="entries projects <?=isset($tag)&&$tag!==""?'tagged':''; ?>">
+ <? $this->include_template('projectlist.html.tpl') ?>
+ <!--
+ <ul>
<? foreach($entries as $entry): ?>
<li class="entry <?=$entry->cat->name?>">
- <a href="<?=$entry->url;?>">
- <img src="<?=$entry->thumb;?>" class="thumb" />
- <br />
- <strong><?=$entry->title;?></strong>
- </a>
-<!-- <br />
+ <a href="<?=$entry->url;?>"><?=$entry->title;?></a>
+ <br />
—
<br />
<ul class="tags">
<? for($i = 0; $i < sizeof($entry->tags); $i++) : $tag = $entry->tags[$i]; ?>
<li class="tag"><a href="<?=WEB_ROOT.'tag/'.$tag?>"><?=$tag?></a></li>
<? endfor; ?>
- </ul> -->
+ </ul>
</li>
<? endforeach; ?>
</ul>
+ -->
+
</div>
<? $this->include_template('footer.html.tpl') ?>
</body>
</html>
-
-
-
-
-
--- /dev/null
+<html>
+<head>
+
+ <? $this->include_template('head-inc.html.tpl') ?>
+
+ <title><?=SITE_TITLE?><?=$this->page_title(TITLE_DELIMITER);?></title>
+
+</head>
+<body>
+
+<? $this->include_template('nav.html.tpl') ?>
+
+<? if (EDIT) $this->include_template('edit.html.tpl'); ?>
+
+<? $this->include_template('projectlist.html.tpl') ?>
+
+<div id="content" class="single entry">
+
+ <div class="entry">
+ <? $this->include_template('entry.html.tpl', array('entry' => $entry, 'single' => true)); ?>
+ </div>
+
+</div>
+
+<? $this->include_template('footer.html.tpl') ?>
+
+<script language="javascript" src="<?=WEB_ROOT?>js/single.js"></script>
+
+</body>
+</html>