westdc-zf1/application/default/views/scripts/water/search.phtml

44 lines
1.8 KiB
PHTML
Executable File

<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/water.css');
$this->nav[] = array('link'=>"/water",'title'=>'Watershed Allied Telemetry Experimental Research');
?>
<?= $this->render('breadcrumbs.phtml'); ?>
<div class="row">
<div class="span3">
<?= $this->partial('water/navi.phtml'); ?>
</div>
<div class="span9">
<div class="row" style="overflow:hidden;">
<div class="input-append">
<form id="search" enctype="application/x-www-form-urlencoded" action="/water/search" method="post">
<input type="text" name="q" id="q" value="Title or Abstract" onfocus="myfocus(this);" onblur="myblur(this);">
<button class="btn" type="submit" name="submit" id="submit">Search</button>
<button class="btn" type="button" onclick="location.href='/water/tag'">Keywords</button>
<button class="btn" type="button" onclick="location.href='/water/timeline'">Timeline</button>
<button class="btn" type="button" onclick="location.href='/water/timemap'">TimeMap</button>
</form>
</div>
</div>
<?php if (!empty($this->metadata)) : ?>
<?php echo $this->page->getNavigation(); ?>
<hr />
<div class="mdlist">
<ol start="<?php echo $this->offset; ?>">
<?php foreach($this->metadata as $md) : ?>
<li><a href="/water/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
<?php endforeach; ?>
</ol>
</div>
<hr />
<?php echo $this->page->getNavigation();
else :
?>
<div>
<p>Search results is empty.</p>
</div>
<?php endif; ?>
</div>
</div>