Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="project_MasterPage" %>
- <!DOCTYPE HTML>
- <!--
- Verti by HTML5 UP
- html5up.net | @n33co
- Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
- -->
- <html>
- <head runat="server">
- <title><%= Page.Title %></title>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
- <link rel="stylesheet" href="assets/css/main.css" />
- <!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
- <asp:ContentPlaceHolder id="Head" runat="server">
- </asp:ContentPlaceHolder>
- </head>
- <body class="homepage">
- <div id="page-wrapper">
- <!-- Header -->
- <div id="header-wrapper">
- <header id="header" class="container">
- <!-- Logo -->
- <div id="logo">
- <h1><a href="Default.aspx">MCV Software</a></h1>
- <span>by Eric Lindsey</span>
- </div>
- <!-- Nav -->
- <nav id="nav">
- <ul>
- <!-- "current" class gets added by script at the end of the document -->
- <li><a href="Default.aspx">Welcome</a></li>
- <li>
- <a href="#">My Work</a>
- <ul>
- <li><a href="Parking.asp">FGCU Parking</a></li>
- <li><a href="BlitzTrivia.asp">Blitz! Trivia</a></li>
- <li><a href="BoostBot.asp">BoostBot</a></li>
- </ul>
- </li>
- <!--
- <li><a href="left-sidebar.html">Left Sidebar</a></li>
- <li><a href="right-sidebar.html">Right Sidebar</a></li>
- <li><a href="no-sidebar.html">No Sidebar</a></li>
- -->
- </ul>
- </nav>
- </header>
- </div>
- <!-- Content -->
- <asp:ContentPlaceHolder id="Main" runat="server">
- </asp:ContentPlaceHolder>
- <!-- Footer -->
- <div id="footer-wrapper">
- <footer id="footer" class="container">
- <div class="row">
- <!--
- <div class="3u 6u(medium) 12u$(small)">
- <!-- Links !->
- <section class="widget links">
- <h3>Random Stuff</h3>
- <ul class="style2">
- <li><a href="#">Etiam feugiat condimentum</a></li>
- <li><a href="#">Aliquam imperdiet suscipit odio</a></li>
- <li><a href="#">Sed porttitor cras in erat nec</a></li>
- <li><a href="#">Felis varius pellentesque potenti</a></li>
- <li><a href="#">Nullam scelerisque blandit leo</a></li>
- </ul>
- </section>
- </div>
- <div class="3u 6u$(medium) 12u$(small)">
- <!-- Links !->
- <section class="widget links">
- <h3>Random Stuff</h3>
- <ul class="style2">
- <li><a href="#">Etiam feugiat condimentum</a></li>
- <li><a href="#">Aliquam imperdiet suscipit odio</a></li>
- <li><a href="#">Sed porttitor cras in erat nec</a></li>
- <li><a href="#">Felis varius pellentesque potenti</a></li>
- <li><a href="#">Nullam scelerisque blandit leo</a></li>
- </ul>
- </section>
- </div>
- <div class="3u 6u(medium) 12u$(small)">
- <!-- Links !->
- <section class="widget links">
- <h3>Random Stuff</h3>
- <ul class="style2">
- <li><a href="#">Etiam feugiat condimentum</a></li>
- <li><a href="#">Aliquam imperdiet suscipit odio</a></li>
- <li><a href="#">Sed porttitor cras in erat nec</a></li>
- <li><a href="#">Felis varius pellentesque potenti</a></li>
- <li><a href="#">Nullam scelerisque blandit leo</a></li>
- </ul>
- </section>
- </div>
- -->
- <div class="3u 6u$(medium) 12u$(small)">
- <!-- Contact -->
- <section class="widget contact last">
- <h3>Contact Us</h3>
- <ul>
- <li><a href="tel:2398264890" class="icon fa-phone"><span class="label">Phone</span></a></li>
- <li><a href="#" class="icon fa-envelope" onclick="javascript:location = 'mailto:' + 'eslindsey' + '@gmail.com'"><span class="label">E-mail</span>"</a></li>
- <li><a href="https://www.facebook.com/eric.lindsey.735" target="_blank" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
- </ul>
- </section>
- </div>
- </div>
- <div class="row">
- <div class="12u">
- <div id="copyright">
- <ul class="menu">
- <li>© Untitled. All rights reserved</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
- </ul>
- </div>
- </div>
- </div>
- </footer>
- </div>
- </div>
- <!-- Scripts -->
- <script src="assets/js/jquery.min.js"></script>
- <script src="assets/js/jquery.dropotron.min.js"></script>
- <script src="assets/js/skel.min.js"></script>
- <script src="assets/js/util.js"></script>
- <!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
- <script src="assets/js/main.js"></script>
- <script>
- // Set the current class if this page is in the navbar
- $(document).ready(function() {
- $('#nav a').each(function () {
- if (this.href == location) {
- // We need to add the class to the LI, not to the A
- $(this).parent().addClass('current');
- }
- });
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment