Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • admin
  • alert
  • current-student
  • depts
  • develop
  • image-directories
  • master
  • movetounlcms
  • navigation
  • piwik-test
  • prospective
  • tips
  • titles
  • visitor
14 results

Target

Select target project
  • rdee2/UNL_Top_Level
  • s-mfairch4/UNL_Top_Level
  • bbieber2/UNL_Top_Level
  • acoleman1/UNL_Top_Level
  • erasmussen2/UNL_Top_Level
5 results
Select Git revision
  • captions
  • develop
  • link-fix
  • master
  • sitemap
5 results
Show changes
Commits on Source (481)
Showing
with 1485 additions and 645 deletions
.DS_Store
.idea
/lincoln/ /lincoln/
/media/ /media/
/specialreports/ /specialreports/
...@@ -11,6 +13,7 @@ ...@@ -11,6 +13,7 @@
/special/ /special/
/splash/features.html /splash/features.html
/splash/images/promo_unltoday.jpg /splash/images/promo_unltoday.jpg
/splash/promo_unltoday.html /splash/promo_unltoday_band.html
*.LCK *.LCK
/images/majorpromos.js /images/promos/majorpromos.js
/sharedcode/buildings.js
AddType 'text/html; charset=UTF-8' shtml AddType 'text/html; charset=UTF-8' shtml
RewriteEngine On AddType 'video/mp4' m4v
RewriteRule ^news/$ http://newsroom.unl.edu/ [R=301] AddType 'video/webm' webm
RewriteRule ^international/$ http://international.unl.edu/ [R=301] AddType 'image/svg+xml' svg
RewriteRule ^foodfuelwaterphotocontest/$ http://innovate.unl.edu/photocontest/ [R=301]
#RewriteRule ^depts/.*$ http://directory.unl.edu/departments/academic [R=301]
## If mobile=no, don't redirect the user specifically request no mobileversion redirect permanent /ucomm/news http://newsroom.unl.edu
#RewriteCond %{QUERY_STRING} !mobile=no$ Redirect permanent /ucomm/lincoln http://www.unl.edu/lincoln
## if the browser accepts these mime-types, it's definitely mobile, or pretending to be Redirect permanent /ucomm/international http://international.unl.edu
#RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC,OR] RedirectMatch permanent ^/ucomm/unltoday(.*) http://news.unl.edu/newsrooms/unltoday/
## a bunch of user agent tests
#RewriteCond %{HTTP_USER_AGENT} "sony|symbian|nokia|samsung|mobile|windows ce|epoc|opera" [NC,OR] Redirect permanent /ucomm/facstaff http://www.unl.edu/ucomm/faculty-staff
#RewriteCond %{HTTP_USER_AGENT} "mini|nitro|j2me|midp-|cldc-|netfront|mot|up\.browser|up\.link|audiovox" [NC,OR] Redirect permanent /ucomm/aboutunl/history2.shtml http://www.unl.edu/ucomm/aboutunl/history.shtml
#RewriteCond %{HTTP_USER_AGENT} "blackberry|ericsson,|panasonic|philips|sanyo|sharp|sie-" [NC,OR] Redirect permanent /ucomm/aboutunl/randmtrs.shtml http://www.unl.edu/ucomm/roleandmission.shtml
#RewriteCond %{HTTP_USER_AGENT} "portalmmm|blazer|avantgo|danger|palm|series60|palmsource|pocketpc" [NC,OR]
#RewriteCond %{HTTP_USER_AGENT} "smartphone|rover|ipaq|au-mic,|alcatel|ericy|vodafone\/|wap1\.|wap2\.|iPhone|android" [NC]
## capture the entire requested URL, including querystring
#RewriteCond %{THE_REQUEST} ^[A-Z]+\ ([^\s]+)
## go to the mobile proxy
#RewriteRule ^$|^.*\/$|^.*\.shtml$ http://m.unl.edu/?view=proxy&u=http://%{HTTP_HOST}%1
AddType 'video/mp4' m4v
#RedirectMatch permanent ^/ucomm/depts(.*) http://directory.unl.edu/departments/academic
#---README--
#Frontier setup:
# /cwis/data/index.shtml -> root/ucomm/index.shtml (symlink)
# /cwis/data/.htaccess -> root/ucomm/.htaccess.root (symlink)
#
#/cwis/data/ucomm/.htaccess contains rewirte rules that we only want applied to the ucomm directory (www.unl.edu/ucomm/),
#so this file (.htaccess.root) contains rules that we only want applied to the root directory (www.unl.edu)
RewriteEngine On
RewriteCond %{REMOTE_HOST} ^129\.93 [OR]
RewriteCond %{REMOTE_HOST} ^10\.20\. [OR]
RewriteCond %{REMOTE_HOST} ^10\.21\. [OR]
RewriteCond %{REMOTE_HOST} ^65\.123\.(3[2-9]|[4-5][0-9]|6[0-3])\. [OR]
RewriteCond %{REMOTE_HOST} ^64\.39\.(24[0-9]|25[0-5])\. [OR]
RewriteCond %{REMOTE_HOST} ^216\.128\.(20[8-9]|21[0-9]|22[0-3])\.
RewriteRule .* - [E=UNL_CAMPUS:on]
RewriteCond %{ENV:UNL_CAMPUS} on
RewriteCond %{HTTP_HOST} ^www.unl.edu$
RewriteCond %{REQUEST_URI} ^/$ [OR]
RewriteCond %{REQUEST_URI} ^/index.shtml$
RewriteRule (.*) http://news.unl.edu/newsrooms/unltoday/ [R=302,L]
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Task configuration.
less: {
screen: {
files: {
'sharedcode/css/4.0.css': 'sharedcode/less/4.0.less'
}
}
},
postcss: {
options: {
processors: [
require('autoprefixer-core')({ browsers: ['> 1%', 'last 2 versions', 'Firefox ESR', 'Opera 12.1','Explorer >= 8'] }).postcss
]
},
dist: { src: 'sharedcode/css/*.css' }
},
watch: {
less: {
files: ['sharedcode/less/*'],
tasks: ['less'],
},
postcss: {
files: ['sharedcode/css/4.0.css'],
tasks: ['postcss'],
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
grunt.registerTask('default', ['watch']);
};
Dreamweaver Upgrade Notes for 3.1 to 4.0
----------------------------------------
- Make a backup of your entire site before making any modifications!
- Download the latest dwts from [http://wdn.unl.edu/download/] and place them within your local `Templates` directory.
- Remember to make a backup of your entire site!
- Within Dreamweaver, from the menu bar select `Modify > Templates > Update Pages...`
Updates to Content Regions
--------------------------
**Contact Us Heading Changes**
The 4.0 template includes the h3 heading for the `Contact Us` region. Any custom headings within your
`sharedcode/footerContactInfo.html` should be removed.
Upgrading From Older Templates
-----------------------------
If you haven't performed the upgrades from the 2.0 (2006) or 3.0 (2009) template releases, make sure
you read the 'Updates to Content Regions' documentation here:
https://github.com/unl/wdntemplates/blob/3.1.16/Templates/UPGRADING.markdown
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: absolute.dwt 536 2009-07-23 15:47:30Z bbieber2 $
-->
<link rel="stylesheet" type="text/css" media="screen" href="http://www.unl.edu/wdn/templates_3.0/css/all.css" />
<link rel="stylesheet" type="text/css" media="print" href="http://www.unl.edu/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="http://www.unl.edu/wdn/templates_3.0/scripts/all.js"></script>
<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
</head>
<body class="fixed">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="http://www.unl.edu/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
<h1>University of Nebraska&ndash;Lincoln</h1>
<!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
</div>
<div id="wdn_navigation_bar">
<div id="breadcrumbs">
<!-- WDN: see glossary item 'breadcrumbs' -->
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
<li>Department</li>
</ul>
<!-- TemplateEndEditable --></div>
<div id="wdn_navigation_wrapper">
<div id="navigation"><!-- TemplateBeginEditable name="navlinks" -->
<!--#include virtual="../sharedcode/navigation.html" -->
<!-- TemplateEndEditable --></div>
</div>
</div>
<div id="wdn_content_wrapper">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br />
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
<!-- TemplateEndEditable -->
<div class="clear"></div>
<!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
<div id="footer">
<div id="footer_floater"></div>
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
</div>
<div class="footer_col"><!-- TemplateBeginEditable name="leftcollinks" -->
<!--#include virtual="../sharedcode/relatedLinks.html" -->
<!-- TemplateEndEditable --></div>
<div class="footer_col"><!-- TemplateBeginEditable name="contactinfo" -->
<!--#include virtual="../sharedcode/footerContactInfo.html" -->
<!-- TemplateEndEditable --></div>
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
</div>
<!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable -->
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
<!--#include virtual="../sharedcode/footer.html" -->
<!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="http://www.unl.edu/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
</div>
</div>
<div id="wdn_wrapper_footer"> </div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head> <head>
<!--#include virtual="/wdn/templates_4.0/includes/metanfavico.html" -->
<!-- <!--
Membership and regular participation in the UNL Web Developer Network Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at is required to use the UNL templates. Visit the WDN site at
...@@ -13,80 +19,127 @@ ...@@ -13,80 +19,127 @@
create a derivative work. create a derivative work.
This message may not be removed from any pages based on the UNL site template. This message may not be removed from any pages based on the UNL site template.
$Id: debug.dwt 728 2009-09-08 16:53:28Z bbieber2 $ $Id: debug.dwt | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
--> -->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/debug.css" /> <!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles_debug.html" -->
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="/wdn/templates_3.0/scripts/debug.js"></script>
<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
<!-- TemplateBeginEditable name="doctitle" --> <!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title> <title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here --> <!-- Place optional header elements here -->
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="debug" -->
</head> </head>
<body class="fixed debug"> <body class="@@(_document['class'])@@" data-version="4.0">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p> <!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
<div id="wdn_wrapper"> <div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a> <input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<h1>University of Nebraska&ndash;Lincoln</h1> <!--#include virtual="/wdn/templates_4.0/includes/noscript-padding.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" --> <header id="header" role="banner" class="wdn-content-slide wdn-band">
<!--#include virtual="/wdn/templates_4.0/includes/wdnResources.html" -->
<div class="wdn-inner-wrapper">
<!--#include virtual="/wdn/templates_4.0/includes/logo.html" -->
<div id="wdn_resources">
<!--#include virtual="/wdn/templates_4.0/includes/idm.html" -->
<!--#include virtual="/wdn/templates_4.0/includes/wdnTools.html" -->
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div> </div>
<div id="wdn_navigation_bar"> <!--#include virtual="/wdn/templates_4.0/includes/apps.html" -->
<div id="breadcrumbs"> <div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' --> <!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" --> <!-- TemplateBeginEditable name="breadcrumbs" -->
<ul> <ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li> <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li>Department</li> <li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul> </ul>
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper"> <div id="wdn_navigation_wrapper">
<div id="navigation"><!-- TemplateBeginEditable name="navlinks" --> <nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<!--#include virtual="../sharedcode/navigation.html" --> <!--#include virtual="../sharedcode/navigation.html" -->
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div> </div>
</div> </div>
<div id="wdn_content_wrapper"> <div id="maincontent" class="wdn-main">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' --> <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" --> <!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br /> <div class="wdn-band">
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br /> <div class="wdn-inner-wrapper">
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p> <p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<div class="clear"></div>
<!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.--> <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div> </div>
<div id="footer">
<div id="footer_floater"></div>
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
</div> </div>
<div class="footer_col"><!-- TemplateBeginEditable name="leftcollinks" --> <div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<!--#include virtual="../sharedcode/relatedLinks.html" --> <!--#include virtual="../sharedcode/relatedLinks.html" -->
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
<div class="footer_col"><!-- TemplateBeginEditable name="contactinfo" --> </div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<!--#include virtual="../sharedcode/footerContactInfo.html" --> <!--#include virtual="../sharedcode/footerContactInfo.html" -->
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
</div> </div>
<!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable --> </div>
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" --> <div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<!--#include virtual="../sharedcode/footer.html" --> <!--#include virtual="../sharedcode/footer.html" -->
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_3.0/includes/wdn.html" --> <!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div> </div>
<!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
</div>
</div> </div>
</div> </div>
<div id="wdn_wrapper_footer"> </div> <!--#include virtual="/wdn/templates_4.0/includes/footer_floater.html" -->
</footer>
<!--#include virtual="/wdn/templates_4.0/includes/noscript.html" -->
</div> </div>
</body> </body>
</html> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: document.dwt 536 2009-07-23 15:47:30Z bbieber2 $
-->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
</head>
<body class="document">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
<h1>University of Nebraska&ndash;Lincoln</h1>
</div>
<div id="wdn_navigation_bar">
<div id="breadcrumbs">
<!-- WDN: see glossary item 'breadcrumbs' -->
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
<li>Department</li>
</ul>
<!-- TemplateEndEditable --></div>
<div id="wdn_navigation_wrapper">
<div id="navigation"></div>
</div>
</div>
<div id="wdn_content_wrapper">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br />
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
<!-- TemplateEndEditable -->
<div class="clear"></div>
<!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
<div id="footer">
<div id="footer_floater"></div>
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
<!--#include virtual="../sharedcode/footer.html" -->
<!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
</div>
</div>
<div id="wdn_wrapper_footer"> </div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head> <head>
<!--#include virtual="/wdn/templates_4.0/includes/metanfavico.html" -->
<!-- <!--
Membership and regular participation in the UNL Web Developer Network Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at is required to use the UNL templates. Visit the WDN site at
...@@ -13,80 +19,127 @@ ...@@ -13,80 +19,127 @@
create a derivative work. create a derivative work.
This message may not be removed from any pages based on the UNL site template. This message may not be removed from any pages based on the UNL site template.
$Id: fixed.dwt 536 2009-07-23 15:47:30Z bbieber2 $ $Id: fixed.dwt | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
--> -->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" /> <!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles.html" -->
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
<!-- TemplateBeginEditable name="doctitle" --> <!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title> <title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here --> <!-- Place optional header elements here -->
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="" -->
</head> </head>
<body class="fixed"> <body class="@@(_document['class'])@@" data-version="4.0">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p> <!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
<div id="wdn_wrapper"> <div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a> <input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<h1>University of Nebraska&ndash;Lincoln</h1> <!--#include virtual="/wdn/templates_4.0/includes/noscript-padding.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" --> <header id="header" role="banner" class="wdn-content-slide wdn-band">
<!--#include virtual="/wdn/templates_4.0/includes/wdnResources.html" -->
<div class="wdn-inner-wrapper">
<!--#include virtual="/wdn/templates_4.0/includes/logo.html" -->
<div id="wdn_resources">
<!--#include virtual="/wdn/templates_4.0/includes/idm.html" -->
<!--#include virtual="/wdn/templates_4.0/includes/wdnTools.html" -->
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div> </div>
<div id="wdn_navigation_bar"> <!--#include virtual="/wdn/templates_4.0/includes/apps.html" -->
<div id="breadcrumbs"> <div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' --> <!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" --> <!-- TemplateBeginEditable name="breadcrumbs" -->
<ul> <ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li> <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li>Department</li> <li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul> </ul>
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper"> <div id="wdn_navigation_wrapper">
<div id="navigation"><!-- TemplateBeginEditable name="navlinks" --> <nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<!--#include virtual="../sharedcode/navigation.html" --> <!--#include virtual="../sharedcode/navigation.html" -->
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div> </div>
</div> </div>
<div id="wdn_content_wrapper"> <div id="maincontent" class="wdn-main">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' --> <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" --> <!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br /> <div class="wdn-band">
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br /> <div class="wdn-inner-wrapper">
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p> <p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<div class="clear"></div>
<!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.--> <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div> </div>
<div id="footer">
<div id="footer_floater"></div>
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
</div> </div>
<div class="footer_col"><!-- TemplateBeginEditable name="leftcollinks" --> <div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<!--#include virtual="../sharedcode/relatedLinks.html" --> <!--#include virtual="../sharedcode/relatedLinks.html" -->
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
<div class="footer_col"><!-- TemplateBeginEditable name="contactinfo" --> </div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<!--#include virtual="../sharedcode/footerContactInfo.html" --> <!--#include virtual="../sharedcode/footerContactInfo.html" -->
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
</div> </div>
<!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable --> </div>
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" --> <div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<!--#include virtual="../sharedcode/footer.html" --> <!--#include virtual="../sharedcode/footer.html" -->
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_3.0/includes/wdn.html" --> <!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div> </div>
<!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
</div>
</div> </div>
</div> </div>
<div id="wdn_wrapper_footer"> </div> <!--#include virtual="/wdn/templates_4.0/includes/footer_floater.html" -->
</footer>
<!--#include virtual="/wdn/templates_4.0/includes/noscript.html" -->
</div> </div>
</body> </body>
</html> </html>
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<jsp:include page="/wdn/templates_4.0/includes/metanfavico.html" />
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: jsp.debug.dwt.jsp | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<jsp:include page="/wdn/templates_4.0/includes/scriptsandstyles_debug.html" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="debug" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<jsp:include page="/wdn/templates_4.0/includes/skipnav.html" />
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<jsp:include page="/wdn/templates_4.0/includes/noscript-padding.html" />
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<jsp:include page="/wdn/templates_4.0/includes/wdnResources.html" />
<div class="wdn-inner-wrapper">
<jsp:include page="/wdn/templates_4.0/includes/logo.html" />
<div id="wdn_resources">
<jsp:include page="/wdn/templates_4.0/includes/idm.html" />
<jsp:include page="/wdn/templates_4.0/includes/wdnTools.html" />
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div>
<jsp:include page="/wdn/templates_4.0/includes/apps.html" />
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<%@ include file="../sharedcode/navigation.html" %>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<%@ include file="../sharedcode/relatedLinks.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<%@ include file="../sharedcode/footerContactInfo.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<%@ include file="../sharedcode/footer.html" %>
<!-- TemplateEndEditable -->
<jsp:include page="/wdn/templates_4.0/includes/wdn.html" />
</div>
<jsp:include page="/wdn/templates_4.0/includes/logos.html" />
</div>
</div>
</div>
<jsp:include page="/wdn/templates_4.0/includes/footer_floater.html" />
</footer>
<jsp:include page="/wdn/templates_4.0/includes/noscript.html" />
</div>
</body>
</html>
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<jsp:include page="/wdn/templates_4.0/includes/metanfavico.html" />
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: jsp.fixed.dwt.jsp | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<jsp:include page="/wdn/templates_4.0/includes/scriptsandstyles.html" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<jsp:include page="/wdn/templates_4.0/includes/skipnav.html" />
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<jsp:include page="/wdn/templates_4.0/includes/noscript-padding.html" />
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<jsp:include page="/wdn/templates_4.0/includes/wdnResources.html" />
<div class="wdn-inner-wrapper">
<jsp:include page="/wdn/templates_4.0/includes/logo.html" />
<div id="wdn_resources">
<jsp:include page="/wdn/templates_4.0/includes/idm.html" />
<jsp:include page="/wdn/templates_4.0/includes/wdnTools.html" />
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div>
<jsp:include page="/wdn/templates_4.0/includes/apps.html" />
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<%@ include file="../sharedcode/navigation.html" %>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<%@ include file="../sharedcode/relatedLinks.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<%@ include file="../sharedcode/footerContactInfo.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<%@ include file="../sharedcode/footer.html" %>
<!-- TemplateEndEditable -->
<jsp:include page="/wdn/templates_4.0/includes/wdn.html" />
</div>
<jsp:include page="/wdn/templates_4.0/includes/logos.html" />
</div>
</div>
</div>
<jsp:include page="/wdn/templates_4.0/includes/footer_floater.html" />
</footer>
<jsp:include page="/wdn/templates_4.0/includes/noscript.html" />
</div>
</body>
</html>
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<jsp:include page="/wdn/templates_4.0/includes/metanfavico.html" />
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: jsp.local.dwt.jsp | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<jsp:include page="/wdn/templates_4.0/includes/scriptsandstyles_local.html" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="fixed" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<jsp:include page="/wdn/templates_4.0/includes/skipnav.html" />
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<jsp:include page="/wdn/templates_4.0/includes/noscript-padding.html" />
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<jsp:include page="/wdn/templates_4.0/includes/wdnResources.html" />
<div class="wdn-inner-wrapper">
<jsp:include page="/wdn/templates_4.0/includes/logo.html" />
<div id="wdn_resources">
<jsp:include page="/wdn/templates_4.0/includes/idm.html" />
<jsp:include page="/wdn/templates_4.0/includes/wdnTools.html" />
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div>
<jsp:include page="/wdn/templates_4.0/includes/apps.html" />
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<%@ include file="../sharedcode/navigation.html" %>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<%@ include file="../sharedcode/relatedLinks.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<%@ include file="../sharedcode/footerContactInfo.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<%@ include file="../sharedcode/footer.html" %>
<!-- TemplateEndEditable -->
<jsp:include page="/wdn/templates_4.0/includes/wdn.html" />
</div>
<jsp:include page="/wdn/templates_4.0/includes/logos.html" />
</div>
</div>
</div>
<jsp:include page="/wdn/templates_4.0/includes/footer_floater.html" />
</footer>
<jsp:include page="/wdn/templates_4.0/includes/noscript.html" />
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<jsp:include page="/wdn/templates_4.0/includes/metanfavico.html" />
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: jsp.unlaffiliate.dwt.jsp | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<jsp:include page="/wdn/templates_4.0/includes/scriptsandstyles.html" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
<link href="../sharedcode/affiliate_imgs/favicon.ico" rel="shortcut icon" />
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<jsp:include page="/wdn/templates_4.0/includes/skipnav.html" />
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<jsp:include page="/wdn/templates_4.0/includes/noscript-padding.html" />
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<jsp:include page="/wdn/templates_4.0/includes/wdnResources.html" />
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="sitebranding_logo" -->
<div id="logo">
<a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative" id="wdn_logo_link">Through the Eyes of the Child Initiative</a>
</div>
<!-- TemplateEndEditable -->
<div id="wdn_resources">
<jsp:include page="/wdn/templates_4.0/includes/idm.html" />
<jsp:include page="/wdn/templates_4.0/includes/wdnTools.html" />
</div>
<span id="wdn_institution_title"><!-- TemplateBeginEditable name="sitebranding_affiliate" --><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a><!-- TemplateEndEditable --></span>
</div>
<jsp:include page="/wdn/templates_4.0/includes/apps.html" />
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Home</a></li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<% include file="../sharedcode/navigation.html" %>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<% include file="../sharedcode/relatedLinks.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<% include file="../sharedcode/footerContactInfo.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<% include file="../sharedcode/footer.html" %>
<!-- TemplateEndEditable -->
<jsp:include page="/wdn/templates_4.0/includes/wdn.html" />
</div>
<jsp:include page="/wdn/templates_4.0/includes/logos.html" />
</div>
</div>
</div>
<jsp:include page="/wdn/templates_4.0/includes/footer_floater.html" />
</footer>
<jsp:include page="/wdn/templates_4.0/includes/noscript.html" />
</div>
</body>
</html>
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<!--#include virtual="/wdn/templates_4.0/includes/metanfavico.html" -->
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: jsp.unlaffiliate_debug.dwt.jsp | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles_debug.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
<link href="../sharedcode/affiliate_imgs/favicon.ico" rel="shortcut icon" />
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="debug" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<!--#include virtual="/wdn/templates_4.0/includes/noscript-padding.html" -->
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<!--#include virtual="/wdn/templates_4.0/includes/wdnResources.html" -->
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="sitebranding_logo" -->
<div id="logo">
<a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative" id="wdn_logo_link">Through the Eyes of the Child Initiative</a>
</div>
<!-- TemplateEndEditable -->
<div id="wdn_resources">
<!--#include virtual="/wdn/templates_4.0/includes/idm.html" -->
<!--#include virtual="/wdn/templates_4.0/includes/wdnTools.html" -->
</div>
<span id="wdn_institution_title"><!-- TemplateBeginEditable name="sitebranding_affiliate" --><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a><!-- TemplateEndEditable --></span>
</div>
<!--#include virtual="/wdn/templates_4.0/includes/apps.html" -->
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Home</a></li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<% include file="../sharedcode/navigation.html" %>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<% include file="../sharedcode/relatedLinks.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<% include file="../sharedcode/footerContactInfo.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<% include file="../sharedcode/footer.html" %>
<!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
</div>
<!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
</div>
</div>
</div>
<!--#include virtual="/wdn/templates_4.0/includes/footer_floater.html" -->
</footer>
<!--#include virtual="/wdn/templates_4.0/includes/noscript.html" -->
</div>
</body>
</html>
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<jsp:include page="/wdn/templates_4.0/includes/metanfavico.html" />
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: jsp.unlaffiliate_local.dwt.jsp | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<jsp:include page="/wdn/templates_4.0/includes/scriptsandstyles_local.html" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
<link href="../sharedcode/affiliate_imgs/favicon.ico" rel="shortcut icon" />
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<jsp:include page="/wdn/templates_4.0/includes/skipnav.html" />
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<jsp:include page="/wdn/templates_4.0/includes/noscript-padding.html" />
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<jsp:include page="/wdn/templates_4.0/includes/wdnResources.html" />
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="sitebranding_logo" -->
<div id="logo">
<a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative" id="wdn_logo_link">Through the Eyes of the Child Initiative</a>
</div>
<!-- TemplateEndEditable -->
<div id="wdn_resources">
<jsp:include page="/wdn/templates_4.0/includes/idm.html" />
<jsp:include page="/wdn/templates_4.0/includes/wdnTools.html" />
</div>
<span id="wdn_institution_title"><!-- TemplateBeginEditable name="sitebranding_affiliate" --><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a><!-- TemplateEndEditable --></span>
</div>
<jsp:include page="/wdn/templates_4.0/includes/apps.html" />
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Home</a></li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<% include file="../sharedcode/navigation.html" %>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<% include file="../sharedcode/relatedLinks.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<% include file="../sharedcode/footerContactInfo.html" %>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<% include file="../sharedcode/footer.html" %>
<!-- TemplateEndEditable -->
<jsp:include page="/wdn/templates_4.0/includes/wdn.html" />
</div>
<jsp:include page="/wdn/templates_4.0/includes/logos.html" />
</div>
</div>
</div>
<jsp:include page="/wdn/templates_4.0/includes/footer_floater.html" />
</footer>
<jsp:include page="/wdn/templates_4.0/includes/noscript.html" />
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: liquid.dwt 536 2009-07-23 15:47:30Z bbieber2 $
-->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
</head>
<body class="liquid">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
<h1>University of Nebraska&ndash;Lincoln</h1>
<!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
</div>
<div id="wdn_navigation_bar">
<div id="breadcrumbs">
<!-- WDN: see glossary item 'breadcrumbs' -->
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
<li>Department</li>
</ul>
<!-- TemplateEndEditable --></div>
<div id="wdn_navigation_wrapper">
<div id="navigation"><!-- TemplateBeginEditable name="navlinks" -->
<!--#include virtual="../sharedcode/navigation.html" -->
<!-- TemplateEndEditable --></div>
</div>
</div>
<div id="wdn_content_wrapper">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br />
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
<!-- TemplateEndEditable -->
<div class="clear"></div>
<!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
<div id="footer">
<div id="footer_floater"></div>
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
</div>
<div class="footer_col"><!-- TemplateBeginEditable name="leftcollinks" -->
<!--#include virtual="../sharedcode/relatedLinks.html" -->
<!-- TemplateEndEditable --></div>
<div class="footer_col"><!-- TemplateBeginEditable name="contactinfo" -->
<!--#include virtual="../sharedcode/footerContactInfo.html" -->
<!-- TemplateEndEditable --></div>
<div class="footer_col">
<!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
</div>
<!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable -->
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
<!--#include virtual="../sharedcode/footer.html" -->
<!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
</div>
</div>
<div id="wdn_wrapper_footer"> </div>
</div>
</body>
</html>
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<!--#include virtual="/wdn/templates_4.0/includes/metanfavico.html" -->
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: local.dwt | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
-->
<!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles_local.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="" -->
</head>
<body class="@@(_document['class'])@@" data-version="4.0">
<!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
<div id="wdn_wrapper">
<input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<!--#include virtual="/wdn/templates_4.0/includes/noscript-padding.html" -->
<header id="header" role="banner" class="wdn-content-slide wdn-band">
<!--#include virtual="/wdn/templates_4.0/includes/wdnResources.html" -->
<div class="wdn-inner-wrapper">
<!--#include virtual="/wdn/templates_4.0/includes/logo.html" -->
<div id="wdn_resources">
<!--#include virtual="/wdn/templates_4.0/includes/idm.html" -->
<!--#include virtual="/wdn/templates_4.0/includes/wdnTools.html" -->
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div>
<!--#include virtual="/wdn/templates_4.0/includes/apps.html" -->
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div>
</div>
</header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul>
<!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper">
<nav id="navigation" role="navigation" class="wdn-band">
<h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateBeginEditable name="navlinks" -->
<!--#include virtual="../sharedcode/navigation.html" -->
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div>
</div>
<!-- Navigation Trigger -->
<div class="wdn-menu-trigger wdn-content-slide">
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</div>
<!-- End navigation trigger -->
<div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable -->
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
</div>
<div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="optionalfooter" -->
<!-- TemplateEndEditable -->
</div>
</div>
<footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<!--#include virtual="../sharedcode/relatedLinks.html" -->
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<!--#include virtual="../sharedcode/footerContactInfo.html" -->
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<!--#include virtual="../sharedcode/footer.html" -->
<!-- TemplateEndEditable -->
<!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
</div>
<!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
</div>
</div>
</div>
<!--#include virtual="/wdn/templates_4.0/includes/footer_floater.html" -->
</footer>
<!--#include virtual="/wdn/templates_4.0/includes/noscript.html" -->
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: php.absolute.dwt.php 536 2009-07-23 15:47:30Z bbieber2 $
-->
<link rel="stylesheet" type="text/css" media="screen" href="http://www.unl.edu/wdn/templates_3.0/css/all.css" />
<link rel="stylesheet" type="text/css" media="print" href="http://www.unl.edu/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="http://www.unl.edu/wdn/templates_3.0/scripts/all.js"></script>
<?php virtual('/wdn/templates_3.0/includes/browserspecifics.html'); ?>
<?php virtual('/wdn/templates_3.0/includes/metanfavico.html'); ?>
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
</head>
<body class="fixed">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="http://www.unl.edu/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
<h1>University of Nebraska&ndash;Lincoln</h1>
<?php virtual('/wdn/templates_3.0/includes/wdnTools.html'); ?>
</div>
<div id="wdn_navigation_bar">
<div id="breadcrumbs">
<!-- WDN: see glossary item 'breadcrumbs' -->
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
<li>Department</li>
</ul>
<!-- TemplateEndEditable --></div>
<div id="wdn_navigation_wrapper">
<div id="navigation"><!-- TemplateBeginEditable name="navlinks" -->
<?php include '../sharedcode/navigation.html'; ?>
<!-- TemplateEndEditable --></div>
</div>
</div>
<div id="wdn_content_wrapper">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br />
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
<!-- TemplateEndEditable -->
<div class="clear"></div>
<?php virtual('/wdn/templates_3.0/includes/noscript.html'); ?>
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
<div id="footer">
<div id="footer_floater"></div>
<div class="footer_col">
<?php virtual('/wdn/templates_3.0/includes/feedback.html'); ?>
</div>
<div class="footer_col"><!-- TemplateBeginEditable name="leftcollinks" -->
<?php include '../sharedcode/relatedLinks.html'; ?>
<!-- TemplateEndEditable --></div>
<div class="footer_col"><!-- TemplateBeginEditable name="contactinfo" -->
<?php include '../sharedcode/footerContactInfo.html'; ?>
<!-- TemplateEndEditable --></div>
<div class="footer_col">
<?php virtual('/wdn/templates_3.0/includes/socialmediashare.html'); ?>
</div>
<!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable -->
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
<?php include '../sharedcode/footer.html'; ?>
<!-- TemplateEndEditable -->
<?php virtual('/wdn/templates_3.0/includes/wdn.html'); ?>
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="http://www.unl.edu/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
</div>
</div>
<div id="wdn_wrapper_footer"> </div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <!--[if IEMobile 7 ]><html class="ie iem7"><![endif]-->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!--<![endif]-->
<head> <head>
<?php virtual("/wdn/templates_4.0/includes/metanfavico.html"); ?>
<!-- <!--
Membership and regular participation in the UNL Web Developer Network Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at is required to use the UNL templates. Visit the WDN site at
...@@ -13,80 +19,127 @@ ...@@ -13,80 +19,127 @@
create a derivative work. create a derivative work.
This message may not be removed from any pages based on the UNL site template. This message may not be removed from any pages based on the UNL site template.
$Id: php.debug.dwt.php 728 2009-09-08 16:53:28Z bbieber2 $ $Id: php.debug.dwt.php | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel $
--> -->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/debug.css" /> <?php virtual("/wdn/templates_4.0/includes/scriptsandstyles_debug.html"); ?>
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="/wdn/templates_3.0/scripts/debug.js"></script>
<?php virtual('/wdn/templates_3.0/includes/browserspecifics.html'); ?>
<?php virtual('/wdn/templates_3.0/includes/metanfavico.html'); ?>
<!-- TemplateBeginEditable name="doctitle" --> <!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title> <title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here --> <!-- Place optional header elements here -->
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<!-- TemplateParam name="class" type="text" value="debug" -->
</head> </head>
<body class="fixed debug"> <body class="@@(_document['class'])@@" data-version="4.0">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p> <?php virtual("/wdn/templates_4.0/includes/skipnav.html"); ?>
<div id="wdn_wrapper"> <div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a> <input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
<h1>University of Nebraska&ndash;Lincoln</h1> <?php virtual("/wdn/templates_4.0/includes/noscript-padding.html"); ?>
<?php virtual('/wdn/templates_3.0/includes/wdnTools.html'); ?> <header id="header" role="banner" class="wdn-content-slide wdn-band">
<?php virtual("/wdn/templates_4.0/includes/wdnResources.html"); ?>
<div class="wdn-inner-wrapper">
<?php virtual("/wdn/templates_4.0/includes/logo.html"); ?>
<div id="wdn_resources">
<?php virtual("/wdn/templates_4.0/includes/idm.html"); ?>
<?php virtual("/wdn/templates_4.0/includes/wdnTools.html"); ?>
</div>
<span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
</div>
<?php virtual("/wdn/templates_4.0/includes/apps.html"); ?>
<div class="wdn-inner-wrapper">
<div id="wdn_site_title">
<span><!-- TemplateBeginEditable name="titlegraphic" -->The Title of My Site<!-- TemplateEndEditable --></span>
</div> </div>
<div id="wdn_navigation_bar"> </div>
<div id="breadcrumbs"> </header>
<div id="wdn_navigation_bar" role="navigation" class="wdn-band">
<nav id="breadcrumbs" class="wdn-inner-wrapper">
<!-- WDN: see glossary item 'breadcrumbs' --> <!-- WDN: see glossary item 'breadcrumbs' -->
<h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
<!-- TemplateBeginEditable name="breadcrumbs" --> <!-- TemplateBeginEditable name="breadcrumbs" -->
<ul> <ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li> <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln" class="wdn-icon-home">UNL</a></li>
<li>Department</li> <li><a href="#" title="Site Title">Site Title</a></li>
<li>Home</li>
</ul> </ul>
<!-- TemplateEndEditable --></div> <!-- TemplateEndEditable -->
</nav>
<div id="wdn_navigation_wrapper"> <div id="wdn_navigation_wrapper">
<div id="navigation"><!-- TemplateBeginEditable name="navlinks" --> <nav id="navigation" role="navigation" class="wdn-band">
<?php include '../sharedcode/navigation.html'; ?> <h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
<!-- TemplateEndEditable --></div> <!-- TemplateBeginEditable name="navlinks" -->
<?php include "../sharedcode/navigation.html"; ?>
<!-- TemplateEndEditable -->
<label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
</nav>
</div> </div>
</div> </div>
<div id="wdn_content_wrapper"> <!-- Navigation Trigger -->
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" --> <div class="wdn-menu-trigger wdn-content-slide">
<h1>Department</h1> <label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
<!-- TemplateEndEditable --></div> </div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div> <!-- End navigation trigger -->
<div id="maincontent"> <div id="wdn_content_wrapper" role="main" class="wdn-content-slide">
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div id="pagetitle">
<!-- TemplateBeginEditable name="pagetitle" -->
<h1>Please Title Your Page Here</h1>
<!-- TemplateEndEditable -->
</div>
</div>
</div>
<div id="maincontent" class="wdn-main">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' --> <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" --> <!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br /> <div class="wdn-band">
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br /> <div class="wdn-inner-wrapper">
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p> <p>Impress your audience with awesome content!</p>
</div>
</div>
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<div class="clear"></div>
<?php virtual('/wdn/templates_3.0/includes/noscript.html'); ?>
<!--THIS IS THE END OF THE MAIN CONTENT AREA.--> <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div> </div>
<div id="footer"> </div>
<div id="footer_floater"></div> <div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
<div class="footer_col"> <div class="wdn-inner-wrapper">
<?php virtual('/wdn/templates_3.0/includes/feedback.html'); ?> <!-- TemplateBeginEditable name="optionalfooter" -->
</div>
<div class="footer_col"><!-- TemplateBeginEditable name="leftcollinks" -->
<?php include '../sharedcode/relatedLinks.html'; ?>
<!-- TemplateEndEditable --></div>
<div class="footer_col"><!-- TemplateBeginEditable name="contactinfo" -->
<?php include '../sharedcode/footerContactInfo.html'; ?>
<!-- TemplateEndEditable --></div>
<div class="footer_col">
<?php virtual('/wdn/templates_3.0/includes/socialmediashare.html'); ?>
</div>
<!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable -->
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
<?php include '../sharedcode/footer.html'; ?>
<!-- TemplateEndEditable --> <!-- TemplateEndEditable -->
<?php virtual('/wdn/templates_3.0/includes/wdn.html'); ?>
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
</div> </div>
</div> </div>
<div id="wdn_wrapper_footer"> </div> <footer id="footer" role="contentinfo" class="wdn-content-slide">
<div class="wdn-band" id="wdn_footer_related">
<div class="wdn-inner-wrapper">
<!-- TemplateBeginEditable name="leftcollinks" -->
<?php include "../sharedcode/relatedLinks.html"; ?>
<!-- TemplateEndEditable -->
</div>
</div>
<div class="wdn-band">
<div class="wdn-inner-wrapper">
<div class="footer_col" id="wdn_footer_contact">
<h3>Contact Us</h3>
<div class="wdn-contact-wrapper">
<!-- TemplateBeginEditable name="contactinfo" -->
<?php include "../sharedcode/footerContactInfo.html"; ?>
<!-- TemplateEndEditable -->
</div>
</div>
<div id="wdn_copyright">
<div class="wdn-footer-text">
<!-- TemplateBeginEditable name="footercontent" -->
<?php include "../sharedcode/footer.html"; ?>
<!-- TemplateEndEditable -->
<?php virtual("/wdn/templates_4.0/includes/wdn.html"); ?>
</div>
<?php virtual("/wdn/templates_4.0/includes/logos.html"); ?>
</div>
</div>
</div>
<?php virtual("/wdn/templates_4.0/includes/footer_floater.html"); ?>
</footer>
<?php virtual("/wdn/templates_4.0/includes/noscript.html"); ?>
</div> </div>
</body> </body>
</html> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<!--
Membership and regular participation in the UNL Web Developer Network
is required to use the UNL templates. Visit the WDN site at
http://wdn.unl.edu/. Click the WDN Registry link to log in and
register your unl.edu site.
All UNL template code is the property of the UNL Web Developer Network.
The code seen in a source code view is not, and may not be used as, a
template. You may not use this code, a reverse-engineered version of
this code, or its associated visual presentation in whole or in part to
create a derivative work.
This message may not be removed from any pages based on the UNL site template.
$Id: php.document.dwt.php 536 2009-07-23 15:47:30Z bbieber2 $
-->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
<?php virtual('/wdn/templates_3.0/includes/browserspecifics.html'); ?>
<?php virtual('/wdn/templates_3.0/includes/metanfavico.html'); ?>
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- TemplateEndEditable -->
</head>
<body class="document">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<div id="wdn_wrapper">
<div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
<h1>University of Nebraska&ndash;Lincoln</h1>
</div>
<div id="wdn_navigation_bar">
<div id="breadcrumbs">
<!-- WDN: see glossary item 'breadcrumbs' -->
<!-- TemplateBeginEditable name="breadcrumbs" -->
<ul>
<li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
<li>Department</li>
</ul>
<!-- TemplateEndEditable --></div>
<div id="wdn_navigation_wrapper">
<div id="navigation"></div>
</div>
</div>
<div id="wdn_content_wrapper">
<div id="titlegraphic"><!-- TemplateBeginEditable name="titlegraphic" -->
<h1>Department</h1>
<!-- TemplateEndEditable --></div>
<div id="pagetitle"><!-- TemplateBeginEditable name="pagetitle" --> <!-- TemplateEndEditable --></div>
<div id="maincontent">
<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
<!-- TemplateBeginEditable name="maincontentarea" -->
<p>Place your content here.<br />
Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
<a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
<!-- TemplateEndEditable -->
<div class="clear"></div>
<?php virtual('/wdn/templates_3.0/includes/noscript.html'); ?>
<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
</div>
<div id="footer">
<div id="footer_floater"></div>
<div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
<?php include '../sharedcode/footer.html'; ?>
<!-- TemplateEndEditable -->
<?php virtual('/wdn/templates_3.0/includes/wdn.html'); ?>
| <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
</div>
</div>
<div id="wdn_wrapper_footer"> </div>
</div>
</body>
</html>