Skip to content
Snippets Groups Projects
Commit 994a44eb authored by Tim Steiner's avatar Tim Steiner
Browse files

Add a copy of the menu to the front page and add new items to menu.

parent 8354e328
No related branches found
No related tags found
No related merge requests found
<?php $this->layout()->breadcrumbs = array('Welcome'); ?> <?php $this->layout()->breadcrumbs = array('Welcome'); ?>
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/index/index.css', 'all'); ?> <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/index/index.css', 'all'); ?>
<div id="announcements" class="titled_box">
<div class="box_shadow_2"> <div class="one_col left">
<div class="tr"></div> <div id="announcements" class="titled_box">
<div class="tl"> <div class="box_shadow_2">
<h2> <div class="tr"></div>
Messages <div class="tl">
<img src="<?php echo $this->baseUrl(); ?>/images/index/arrow1.png" alt="arrow 1" class="toggle_arrow" /> <h2>
</h2> Main Menu
<h3></h3> <img src="<?php echo $this->baseUrl(); ?>/images/index/arrow1.png" alt="arrow 1" class="toggle_arrow" />
</div> </h2>
<div class="bl"></div> <h3></h3>
</div> </div>
<div class="content"> <div class="bl"></div>
Course Approval is a UNL on-line curriculum request system developed to process new </div>
curriculum or changes in undergraduate curriculum. Users of the system must <div class="content">
have approval. Contact Sara Mattson at <a href="mailto:smattson3@unl.edu"> <?php echo $this->partial('menu.phtml'); ?>
smattson3@unl.edu</a> for information. </div>
</div> </div>
</div> </div>
\ No newline at end of file
<div class="three_col right">
<div id="announcements" class="titled_box">
<div class="box_shadow_2">
<div class="tr"></div>
<div class="tl">
<h2>
Messages
<img src="<?php echo $this->baseUrl(); ?>/images/index/arrow1.png" alt="arrow 1" class="toggle_arrow" />
</h2>
<h3></h3>
</div>
<div class="bl"></div>
</div>
<div class="content">
Course Approval is a UNL on-line curriculum request system developed to process new
curriculum or changes in undergraduate curriculum. Users of the system must
have approval. Contact Sara Mattson at <a href="mailto:smattson3@unl.edu">
smattson3@unl.edu</a> for information.
</div>
</div>
</div>
...@@ -2,8 +2,15 @@ ...@@ -2,8 +2,15 @@
<?php if (Zend_Auth::getInstance()->getIdentity()) { ?> <?php if (Zend_Auth::getInstance()->getIdentity()) { ?>
<li><a href="<?php echo $this->baseUrl(); ?>/requests">My Requests</a></li> <li><a href="<?php echo $this->baseUrl(); ?>/requests">My Requests</a></li>
<li><a href="<?php echo $this->baseUrl(); ?>/requests/new">New Request</a></li> <li><a href="<?php echo $this->baseUrl(); ?>/requests/new">New Request</a></li>
<?php } ?>
<li><a href="<?php echo $this->baseUrl(); ?>/courses/public-view/search">Curriculum Search</a></li>
<li><a href="<?php echo $this->baseUrl(); ?>/ucc/reports/monthly">UCC Activity</a></li>
<?php if (Zend_Auth::getInstance()->getIdentity()) { ?>
<li><a href="<?php echo $this->baseUrl(); ?>/auth/index/logout">Log Out</a></li> <li><a href="<?php echo $this->baseUrl(); ?>/auth/index/logout">Log Out</a></li>
<?php } else { ?> <?php } else { ?>
<li><a href="<?php echo $this->baseUrl(); ?>/auth/index/login">Log In</a></li> <li><a href="<?php echo $this->baseUrl(); ?>/auth/index/login">Log In</a></li>
<?php } ?> <?php } ?>
</ul> </ul>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment