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
  • tips
  • develop
  • image-directories
  • admin
  • current-student
  • piwik-test
  • navigation
  • movetounlcms
  • master
  • alert
  • depts
  • titles
  • prospective
  • visitor
14 results

Target

Select target project
  • Ryan Dee / UNL_Top_Level
  • Michael Fairchild / UNL_Top_Level
  • Brett Bieber / UNL_Top_Level
  • acoleman1 / UNL_Top_Level
  • Eric Rasmussen / UNL_Top_Level
5 results
Select Git revision
  • link-fix
  • sitemap
  • captions
  • develop
  • master
5 results
Show changes
1000 files
+ 77367
6633
Compare changes
  • Side-by-side
  • Inline

Files

+5 −2
Original line number Diff line number Diff line
.DS_Store
.idea
/lincoln/
/media/
/specialreports/
@@ -11,6 +13,7 @@
/special/
/splash/features.html
/splash/images/promo_unltoday.jpg
/splash/promo_unltoday.html
/splash/promo_unltoday_band.html
*.LCK
/images/majorpromos.js
/images/promos/majorpromos.js
/sharedcode/buildings.js
+12 −20
Original line number Diff line number Diff line
AddType 'text/html; charset=UTF-8' shtml
RewriteEngine On
RewriteRule ^news/$    http://newsroom.unl.edu/         [R=301]
RewriteRule ^international/$    http://international.unl.edu/         [R=301]
RewriteRule ^foodfuelwaterphotocontest/$    http://innovate.unl.edu/photocontest/        [R=301]
#RewriteRule ^depts/.*$  http://directory.unl.edu/departments/academic [R=301]
AddType 'video/mp4' m4v
AddType 'video/webm' webm
AddType 'image/svg+xml' svg

## If mobile=no, don't redirect the user specifically request no mobileversion
#RewriteCond %{QUERY_STRING} !mobile=no$
## if the browser accepts these mime-types, it's definitely mobile, or pretending to be
#RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC,OR]
## a bunch of user agent tests
#RewriteCond %{HTTP_USER_AGENT} "sony|symbian|nokia|samsung|mobile|windows ce|epoc|opera" [NC,OR]
#RewriteCond %{HTTP_USER_AGENT} "mini|nitro|j2me|midp-|cldc-|netfront|mot|up\.browser|up\.link|audiovox" [NC,OR]
#RewriteCond %{HTTP_USER_AGENT} "blackberry|ericsson,|panasonic|philips|sanyo|sharp|sie-" [NC,OR]
#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
redirect  permanent  /ucomm/news  http://newsroom.unl.edu
Redirect  permanent  /ucomm/lincoln  http://www.unl.edu/lincoln
Redirect  permanent  /ucomm/international  http://international.unl.edu
RedirectMatch  permanent  ^/ucomm/unltoday(.*)  http://news.unl.edu/newsrooms/unltoday/

Redirect  permanent  /ucomm/facstaff  http://www.unl.edu/ucomm/faculty-staff
Redirect  permanent  /ucomm/aboutunl/history2.shtml  http://www.unl.edu/ucomm/aboutunl/history.shtml
Redirect  permanent  /ucomm/aboutunl/randmtrs.shtml  http://www.unl.edu/ucomm/roleandmission.shtml

AddType 'video/mp4' m4v

#RedirectMatch  permanent   ^/ucomm/depts(.*)  http://directory.unl.edu/departments/academic

.htaccess.root

0 → 100644
+25 −0
Original line number Diff line number Diff line
#---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]

Gruntfile.js

0 → 100644
+41 −0
Original line number Diff line number Diff line
/*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']);
};
+24 −0
Original line number Diff line number Diff line
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

Templates/absolute.dwt

deleted100644 → 0
+0 −92
Original line number Diff line number Diff line
<!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>
+118 −65
Original line number Diff line number Diff line
<!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">
<!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 
@@ -13,80 +19,127 @@
    create a derivative work.
    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" />
<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" -->
<!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles_debug.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<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="fixed debug">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<body class="@@(_document['class'])@@" data-version="4.0">
    <!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
    <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" -->
        <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>
    <div id="wdn_navigation_bar">
        <div id="breadcrumbs">
            <!--#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">UNL</a></li>
                <li>Department</li>
                    <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 --></div>
                <!-- TemplateEndEditable -->
            </nav>
            <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" -->
                <!-- 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 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">
            <div id="maincontent" class="wdn-main">
                <!--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>
                <div class="wdn-band">
                    <div class="wdn-inner-wrapper">
                        <p>Impress your audience with awesome content!</p>
                    </div>
                </div>
                <!-- 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" -->
        <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 class="footer_col"><!-- TemplateBeginEditable name="contactinfo" -->
                    <!-- 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 class="footer_col">
                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
                            <!-- TemplateEndEditable -->
                        </div>
            <!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable -->
            <div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
                    </div>
                    <div id="wdn_copyright">
                        <div class="wdn-footer-text">
                            <!-- 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>
                            <!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
                        </div>
                    <!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
                    </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>
</body>
</html>

Templates/document.dwt

deleted100644 → 0
+0 −76
Original line number Diff line number Diff line
<!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>
+118 −65
Original line number Diff line number Diff line
<!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">
<!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 
@@ -13,80 +19,127 @@
    create a derivative work.
    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" />
<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" -->
<!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles.html" -->
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<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="fixed">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<body class="@@(_document['class'])@@" data-version="4.0">
    <!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
    <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" -->
        <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>
    <div id="wdn_navigation_bar">
        <div id="breadcrumbs">
            <!--#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">UNL</a></li>
                <li>Department</li>
                    <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 --></div>
                <!-- TemplateEndEditable -->
            </nav>
            <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" -->
                <!-- 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 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">
            <div id="maincontent" class="wdn-main">
                <!--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>
                <div class="wdn-band">
                    <div class="wdn-inner-wrapper">
                        <p>Impress your audience with awesome content!</p>
                    </div>
                </div>
                <!-- 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" -->
        <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 class="footer_col"><!-- TemplateBeginEditable name="contactinfo" -->
                    <!-- 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 class="footer_col">
                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
                            <!-- TemplateEndEditable -->
                        </div>
            <!-- TemplateBeginEditable name="optionalfooter" --> <!-- TemplateEndEditable -->
            <div id="wdn_copyright"><!-- TemplateBeginEditable name="footercontent" -->
                    </div>
                    <div id="wdn_copyright">
                        <div class="wdn-footer-text">
                            <!-- 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>
                            <!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
                        </div>
                    <!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
                    </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>
</body>
</html>
+145 −0
Original line number Diff line number Diff line
<!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>
+145 −0
Original line number Diff line number Diff line
<!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>
+145 −0
Original line number Diff line number Diff line
<!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
+148 −0
Original line number Diff line number Diff line
<!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>
+148 −0
Original line number Diff line number Diff line
<!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>
+148 −0
Original line number Diff line number Diff line
<!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>

Templates/liquid.dwt

deleted100644 → 0
+0 −92
Original line number Diff line number Diff line
<!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>

Templates/local.dwt

0 → 100644
+145 −0
Original line number Diff line number Diff line
<!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>

Templates/php.absolute.dwt.php

deleted100644 → 0
+0 −92
Original line number Diff line number Diff line
<!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>
+118 −65
Original line number Diff line number Diff line
<!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">
<!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>
<?php 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 
@@ -13,80 +19,127 @@
    create a derivative work.
    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" />
<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'); ?>
<?php virtual("/wdn/templates_4.0/includes/scriptsandstyles_debug.html"); ?>
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<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="fixed debug">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<body class="@@(_document['class'])@@" data-version="4.0">
    <?php virtual("/wdn/templates_4.0/includes/skipnav.html"); ?>
    <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>
        <?php virtual('/wdn/templates_3.0/includes/wdnTools.html'); ?>
        <input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
        <?php virtual("/wdn/templates_4.0/includes/noscript-padding.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 id="wdn_navigation_bar">
        <div id="breadcrumbs">
            </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">UNL</a></li>
                <li>Department</li>
                    <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 --></div>
                <!-- TemplateEndEditable -->
            </nav>
            <div id="wdn_navigation_wrapper">
            <div id="navigation"><!-- TemplateBeginEditable name="navlinks" -->
                <?php include '../sharedcode/navigation.html'; ?>
                <!-- TemplateEndEditable --></div>
                <nav id="navigation" role="navigation" class="wdn-band">
                    <h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
                    <!-- TemplateBeginEditable name="navlinks" -->
                    <?php include "../sharedcode/navigation.html"; ?>
                    <!-- TemplateEndEditable -->
                    <label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
                </nav>
            </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">
        <!-- 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" -->
            <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>
                <div class="wdn-band">
                    <div class="wdn-inner-wrapper">
                        <p>Impress your audience with awesome content!</p>
                    </div>
                </div>
                <!-- 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'; ?>
        </div>
        <div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
            <div class="wdn-inner-wrapper">
                <!-- TemplateBeginEditable name="optionalfooter" -->
                <!-- 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>
        <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>
</body>
</html>

Templates/php.document.dwt.php

deleted100644 → 0
+0 −76
Original line number Diff line number Diff line
<!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>
+118 −65
Original line number Diff line number Diff line
<!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">
<!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>
<?php 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 
@@ -13,80 +19,127 @@
    create a derivative work.
    This message may not be removed from any pages based on the UNL site template.
    
    $Id: php.fixed.dwt.php 536 2009-07-23 15:47:30Z bbieber2 $
    $Id: php.fixed.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/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'); ?>
<?php virtual("/wdn/templates_4.0/includes/scriptsandstyles.html"); ?>
<!-- TemplateBeginEditable name="doctitle" -->
<title>UNL | Department | New Page</title>
<!-- TemplateEndEditable --><!-- TemplateBeginEditable name="head" -->
<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="fixed">
<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
<body class="@@(_document['class'])@@" data-version="4.0">
    <?php virtual("/wdn/templates_4.0/includes/skipnav.html"); ?>
    <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>
        <?php virtual('/wdn/templates_3.0/includes/wdnTools.html'); ?>
        <input type="checkbox" id="wdn_menu_toggle" value="Show navigation menu" class="wdn-content-slide wdn-input-driver" />
        <?php virtual("/wdn/templates_4.0/includes/noscript-padding.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 id="wdn_navigation_bar">
        <div id="breadcrumbs">
            </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">UNL</a></li>
                <li>Department</li>
                    <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 --></div>
                <!-- TemplateEndEditable -->
            </nav>
            <div id="wdn_navigation_wrapper">
            <div id="navigation"><!-- TemplateBeginEditable name="navlinks" -->
                <?php include '../sharedcode/navigation.html'; ?>
                <!-- TemplateEndEditable --></div>
                <nav id="navigation" role="navigation" class="wdn-band">
                    <h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
                    <!-- TemplateBeginEditable name="navlinks" -->
                    <?php include "../sharedcode/navigation.html"; ?>
                    <!-- TemplateEndEditable -->
                    <label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
                </nav>
            </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">
        <!-- 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" -->
            <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>
                <div class="wdn-band">
                    <div class="wdn-inner-wrapper">
                        <p>Impress your audience with awesome content!</p>
                    </div>
                </div>
                <!-- 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'; ?>
        </div>
        <div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
            <div class="wdn-inner-wrapper">
                <!-- TemplateBeginEditable name="optionalfooter" -->
                <!-- 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>
        <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>
</body>
</html>

Templates/php.liquid.dwt.php

deleted100644 → 0
+0 −92
Original line number Diff line number Diff line
<!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.liquid.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="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>
        <?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="/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>
+145 −0
Original line number Diff line number Diff line
<!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>
<?php 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: php.local.dwt.php | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel  $
-->
<?php 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">
    <?php 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" />
        <?php virtual("/wdn/templates_4.0/includes/noscript-padding.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>
        </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" -->
                    <?php include "../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" -->
                    <?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>
</body>
</html>

Templates/php.popup.dwt.php

deleted100644 → 0
+0 −63
Original line number Diff line number Diff line
<!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.popup.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="popup">
<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_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>

Templates/php.secure.dwt.php

deleted100644 → 0
+0 −79
Original line number Diff line number Diff line
<!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.secure.dwt.php 566 2009-07-28 21:06:59Z 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="secure 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="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
        <h1>University of Nebraska&ndash;Lincoln</h1>
        <div id="wdn_identity_management"> <!-- TemplateBeginEditable name="identitymanagement" --><a href="https://login.unl.edu/cas/logout">Logout</a><!-- TemplateEndEditable --> </div>
    </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 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>
+0 −97
Original line number Diff line number Diff line
<!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.shared_column_left.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="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="/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="sharedcolumn" -->
            <div class="col left">
                <?php include '../sharedcode/sharedColumn.html'; ?>
            </div>
            <!-- TemplateEndEditable -->
            <div class="three_col right"> <!-- 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>
            <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="/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>
+0 −97
Original line number Diff line number Diff line
<!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.shared_column_right.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="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="/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' -->
            <div class="three_col left"> <!-- 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>
            <!-- TemplateBeginEditable name="sharedcolumn" -->
            <div class="col right">
                <?php include '../sharedcode/sharedColumn.html'; ?>
            </div>
            <!-- 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="/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>
+147 −0
Original line number Diff line number Diff line
<!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>
<?php 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: php.unlaffiliate.dwt.php | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel  $
-->
<?php virtual("/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">
    <?php 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" />
        <?php virtual("/wdn/templates_4.0/includes/noscript-padding.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">
                <!-- 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">
                    <?php virtual("/wdn/templates_4.0/includes/idm.html"); ?>
                    <?php 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>
            <?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>
        </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" -->
                    <?php include "../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" -->
                        <!-- 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" -->
                    <?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>
</body>
</html>
+148 −0
Original line number Diff line number Diff line
<!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>
<?php 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: php.unlaffiliate_debug.dwt.php | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel  $
-->
<?php 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">
    <?php 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" />
        <?php virtual("/wdn/templates_4.0/includes/noscript-padding.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">
                <!-- 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">
                    <?php virtual("/wdn/templates_4.0/includes/idm.html"); ?>
                    <?php 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>
            <?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>
        </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" -->
                    <?php include "../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" -->
                    <?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>
</body>
</html>
+148 −0
Original line number Diff line number Diff line
<!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>
<?php 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: php.unlaffiliate_local.dwt.php | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel  $
-->
<?php virtual("/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">
    <?php 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" />
        <?php virtual("/wdn/templates_4.0/includes/noscript-padding.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">
                <!-- 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">
                    <?php virtual("/wdn/templates_4.0/includes/idm.html"); ?>
                    <?php 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>
            <?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>
        </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" -->
                    <?php include "../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" -->
                    <?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>
</body>
</html>

Templates/popup.dwt

deleted100644 → 0
+0 −63
Original line number Diff line number Diff line
<!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: popup.dwt 756 2009-09-15 02:31:02Z 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="popup">
<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_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>

Templates/secure.dwt

deleted100644 → 0
+0 −79
Original line number Diff line number Diff line
<!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: secure.dwt 562 2009-07-28 19:58:23Z bbieber2 $
-->
<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/debug.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="secure 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="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
        <h1>University of Nebraska&ndash;Lincoln</h1>
        <div id="wdn_identity_management"> <!-- TemplateBeginEditable name="identitymanagement" --><a href="https://login.unl.edu/cas/logout">Logout</a><!-- TemplateEndEditable --> </div>
    </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 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>

Templates/shared_column_left.dwt

deleted100644 → 0
+0 −101
Original line number Diff line number Diff line
<!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: shared_column_left.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="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="/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="sharedcolumn" -->
            <div class="col left">
                <!--#include virtual="../sharedcode/sharedColumn.html" -->
            </div>
            <!-- TemplateEndEditable -->
            <div class="three_col right"> <!-- 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>
            <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 -->
                <ul>
                    <li><a href="http://validator.unl.edu/check/referer">W3C</a></li>
                    <li><a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a></li>
                </ul>
                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
                <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>

Templates/shared_column_right.dwt

deleted100644 → 0
+0 −101
Original line number Diff line number Diff line
<!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: shared_column_right.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="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="/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' -->
            <div class="three_col left"> <!-- 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>
            <!-- TemplateBeginEditable name="sharedcolumn" -->
            <div class="col right">
                <!--#include virtual="../sharedcode/sharedColumn.html" -->
            </div>
            <!-- 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 -->
                <ul>
                    <li><a href="http://validator.unl.edu/check/referer">W3C</a></li>
                    <li><a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a></li>
                </ul>
                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
                <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>
+148 −0
Original line number Diff line number Diff line
<!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: unlaffiliate.dwt | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel  $
-->
<!--#include virtual="/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">
    <!--#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 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>
+148 −0
Original line number Diff line number Diff line
<!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: unlaffiliate_debug.dwt | 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 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>
+148 −0
Original line number Diff line number Diff line
<!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: unlaffiliate_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) | 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">
    <!--#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 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>
+343 −197

File changed.

Preview size limit exceeded, changes collapsed.

−2.05 KiB

2.05 KiB

−1.28 KiB

1.28 KiB

−1.52 KiB

1.52 KiB

−1.4 KiB

1.40 KiB

−1.39 KiB

1.39 KiB

−1.06 KiB

1.06 KiB

−4.44 KiB

4.44 KiB

−2 KiB

2.00 KiB

−2.38 KiB

2.38 KiB

−1.75 KiB

1.75 KiB

−2.48 KiB

2.48 KiB

−1.88 KiB

1.88 KiB

−5.59 KiB

5.59 KiB

−3.07 KiB

3.07 KiB

−3.84 KiB

3.84 KiB

−5.65 KiB

5.65 KiB

−5.57 KiB

5.57 KiB

−7.99 KiB

7.99 KiB

−7.35 KiB

7.35 KiB

−6.24 KiB

6.24 KiB

−14.2 KiB

14.18 KiB

−5.15 KiB

5.15 KiB

−4.75 KiB

4.75 KiB

−8.42 KiB

8.42 KiB

aboutunl/graphics/campus.jpg

deleted100644 → 0
−102 KiB

101.57 KiB

aboutunl/graphics/campus2.jpg

deleted100644 → 0
−49.9 KiB

49.92 KiB

aboutunl/graphics/campus3.jpg

deleted100644 → 0
−101 KiB

101.03 KiB

aboutunl/graphics/classroom.jpg

deleted100644 → 0
−71.5 KiB

71.54 KiB

aboutunl/graphics/history2.jpg

deleted100644 → 0
−47.4 KiB

47.44 KiB

−42.8 KiB

42.79 KiB

−6.29 KiB

6.29 KiB

−52.2 KiB

52.23 KiB

−7.04 KiB

7.04 KiB

−48.4 KiB

48.43 KiB

−9.68 KiB

9.68 KiB

−43.1 KiB

43.13 KiB

−73.7 KiB

73.67 KiB

aboutunl/graphics/maps.jpg

deleted100644 → 0
−44.7 KiB

44.75 KiB

−1.95 KiB

1.95 KiB

−2.08 KiB

2.08 KiB

−2.52 KiB

2.52 KiB

aboutunl/graphics/pageheader.gif

deleted100644 → 0
−2.73 KiB

2.73 KiB

−1.32 KiB

1.32 KiB

aboutunl/graphics/pic1.jpg

deleted100644 → 0
−19.1 KiB

19.08 KiB

aboutunl/graphics/pic_cather.jpg

deleted100644 → 0
−11.7 KiB

11.74 KiB

−15.5 KiB

15.52 KiB

aboutunl/graphics/pic_stadium.jpg

deleted100644 → 0
−24.2 KiB

24.16 KiB

aboutunl/graphics/pic_uhall.jpg

deleted100644 → 0
−18.5 KiB

18.46 KiB

aboutunl/graphics/popper_head.gif

deleted100644 → 0
−1.13 KiB

1.13 KiB

aboutunl/graphics/research.jpg

deleted100644 → 0
−38.5 KiB

38.53 KiB

aboutunl/graphics/rolemission.jpg

deleted100644 → 0
−201 KiB

200.96 KiB

aboutunl/graphics/teaching.jpg

deleted100644 → 0
−41.5 KiB

41.53 KiB

−154 KiB

154.30 KiB

aboutunl/graphics/tour_maps.jpg

deleted100644 → 0
−18.6 KiB

18.57 KiB

+210 −82

File changed.

Preview size limit exceeded, changes collapsed.

+71 −43
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><![endif]-->
<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
<head>
<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
<!--#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 
@@ -19,9 +19,9 @@
    create a derivative work.
    This message may not be removed from any pages based on the UNL site template.
    
    $Id: fixed.dwt | ea2608181e2b6604db76106fd982b39218ddcb8b | Fri Mar 9 12:20:43 2012 -0600 | Kevin Abel  $
    $Id: fixed.dwt | 252c2891a48c70db689be6d897d4f34768b8258a | Thu Aug 1 15:08:19 2013 -0500 | Kevin Abel  $
-->
<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles.html" -->
<!--#include virtual="/wdn/templates_4.0/includes/scriptsandstyles.html" -->
<!-- InstanceBeginEditable name="doctitle" -->
<title>Postwar to Present | History | About UNL | University of Nebraska&ndash;Lincoln</title>
<!-- InstanceEndEditable -->
@@ -29,22 +29,32 @@
<!-- InstanceEndEditable -->
<!-- InstanceParam name="class" type="text" value="fixed" -->
</head>
<body class="fixed" data-version="3.1">
    <nav class="skipnav">
        <a class="skipnav" href="#maincontent">Skip Navigation</a>
    </nav>
<body class="fixed" data-version="4.0">
    <!--#include virtual="/wdn/templates_4.0/includes/skipnav.html" -->
    <div id="wdn_wrapper">
        <header id="header" role="banner">
            <a id="logo" href="http://www.unl.edu/" title="UNL website">UNL</a>
        <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>
            <span id="wdn_site_title"><!-- InstanceBeginEditable name="titlegraphic" -->About UNL<!-- InstanceEndEditable --></span>
            <!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
            </div>
            <!--#include virtual="/wdn/templates_4.0/includes/apps.html" -->
            <div class="wdn-inner-wrapper">
                <div id="wdn_site_title">
                    <span><!-- InstanceBeginEditable name="titlegraphic" -->About UNL<!-- InstanceEndEditable --></span>
                </div>
            </div>
        </header>
        <div id="wdn_navigation_bar">
            <nav id="breadcrumbs">
        <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 hidden">Breadcrumbs</h3>
                <h3 class="wdn_list_descriptor wdn-text-hidden">Breadcrumbs</h3>
                <!-- InstanceBeginEditable name="breadcrumbs" -->
              <ul>
                <li class="first"><a href="http://www.unl.edu/">UNL</a></li>
@@ -55,19 +65,29 @@
          <!-- InstanceEndEditable -->
            </nav>
            <div id="wdn_navigation_wrapper">
                <nav id="navigation" role="navigation">
                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
                <nav id="navigation" role="navigation" class="wdn-band">
                    <h3 class="wdn_list_descriptor wdn-text-hidden">Navigation</h3>
                    <!-- InstanceBeginEditable name="navlinks" -->
    <!--#include virtual="sharedcode/navigation.html" -->
    <!-- InstanceEndEditable -->
                    <label for="wdn_menu_toggle" class="wdn-icon-menu">Menu</label>
                </nav>
            </div>
        </div>
        <div id="wdn_content_wrapper">
        <!-- 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">
                        <!-- InstanceBeginEditable name="pagetitle" --><h1>History - Postwar to Present</h1> <!-- InstanceEndEditable -->
                    </div>
            <div id="maincontent" role="main">
                </div>
            </div>
            <div id="maincontent" class="wdn-main">
                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
                <!-- InstanceBeginEditable name="maincontentarea" -->
            <div class="grid6 first">
@@ -105,40 +125,48 @@
                </div>
                
            <!-- InstanceEndEditable -->
                <div class="clear"></div>
                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
            </div>
        </div>
        <footer id="footer">
            <div id="footer_floater"></div>
            <div class="footer_col" id="wdn_footer_feedback">
                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
        <div class="wdn-band wdn-content-slide" id="wdn_optional_footer">
            <div class="wdn-inner-wrapper">
                <!-- InstanceBeginEditable name="optionalfooter" --> <!-- InstanceEndEditable -->
            </div>
        </div>
            <div class="footer_col" id="wdn_footer_related">
        <footer id="footer" role="contentinfo" class="wdn-content-slide">
            <div class="wdn-band" id="wdn_footer_related">
                <div class="wdn-inner-wrapper">
                    <!-- InstanceBeginEditable name="leftcollinks" -->
            <!-- WDN: see glossary item 'sidebar links' -->
            <!--#include virtual="sharedcode/relatedLinks.html" -->

            <!-- InstanceEndEditable --></div>
            <!-- InstanceEndEditable -->
                </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">
                            <!-- InstanceBeginEditable name="contactinfo" -->
                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
                <!-- InstanceEndEditable --></div>
            <div class="footer_col" id="wdn_footer_share">
                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
                <!-- InstanceEndEditable -->
                        </div>
                    </div>
            <!-- InstanceBeginEditable name="optionalfooter" --> <!-- InstanceEndEditable -->
                    <div id="wdn_copyright">
                <div>
                        <div class="wdn-footer-text">
                            <!-- InstanceBeginEditable name="footercontent" -->
        <!--#include virtual="sharedcode/footer.html" -->
        <!-- InstanceEndEditable -->
                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
                            <!--#include virtual="/wdn/templates_4.0/includes/wdn.html" -->
                        </div>
                    <!--#include virtual="/wdn/templates_4.0/includes/logos.html" -->
                    </div>
                </div>
                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
            </div>
            <!--#include virtual="/wdn/templates_4.0/includes/footer_floater.html" -->
        </footer>
        <!--#include virtual="/wdn/templates_4.0/includes/noscript.html" -->
    </div>
</body>
<!-- InstanceEnd --></html>
+214 −189

File changed.

Preview size limit exceeded, changes collapsed.

+120 −88

File changed.

Preview size limit exceeded, changes collapsed.

+120 −88

File changed.

Preview size limit exceeded, changes collapsed.

+71 −43

File changed.

Preview size limit exceeded, changes collapsed.

+158 −85

File changed.

Preview size limit exceeded, changes collapsed.

+2 −2
Original line number Diff line number Diff line
&copy; 2012 University of Nebraska&ndash;Lincoln | Lincoln, NE 68588 | 402-472-7211 | <a href="http://www.unl.edu/ucomm/aboutunl/" title="Click here to know more about UNL">About UNL</a> | <a href="http://www1.unl.edu/comments/" title="Click here to direct your comments and questions">comments?</a><br />
&copy; 2014 University of Nebraska&ndash;Lincoln &middot; Lincoln, NE 68588 &middot; 402-472-7211 &middot; <a href="http://www.unl.edu/ucomm/aboutunl/">About UNL</a><br />
The University of Nebraska-Lincoln is an equal opportunity educator and employer. Find out more: <a href="https://employment.unl.edu/" target="_blank" title="Employment at UNL">employment.unl.edu</a><br />
<p style="margin:0.5em 0 -1.4em 0">This site produced and maintained by <a href="http://ucomm.unl.edu/iim.shtml" title="go to the University Communications Internet and Interactive media website">University Communications Internet and Interactive Media</a></p>
<p style="margin:0.5em 0 -1.4em 0">This site produced and maintained by <a href="http://iim.unl.edu/" title="go to the University Communications Internet and Interactive media website">University Communications Internet and Interactive Media</a></p>