Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8.     <meta name="description" content="">
  9.     <meta name="author" content="Edward Laverty">
  10.     <link rel="icon" href="../../favicon.ico">
  11.  
  12.     <title>Edward Laverty | Home Base</title>
  13.  
  14.     <!-- Bootstrap core CSS -->
  15.     <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
  16.     <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  17.     <link href="ie10-viewport-bug-workaround.css" rel="stylesheet"/>
  18.     <!-- Custom styles for this template -->
  19.     <link href="cover.css" rel="stylesheet"/>
  20.     <!-- Self Styling -->
  21.     <link href="style.css" rel="stylesheet"/>
  22.     <link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.2.7/css/lightgallery.min.css"/>
  23.   </head>
  24. <body>
  25.   <div class="site-wrapper">
  26.     <div class="site-wrapper-inner">
  27.  
  28.         <div class="cover-container">
  29.           <div class="masthead clearfix">
  30.             <div class="inner">
  31.               <h3 class="masthead-brand">Edward Laverty</h3>
  32.               <nav>
  33.                 <ul class="nav masthead-nav" id="nav">
  34.                   <li class="current"><a href="#home">Home</a></li>
  35.                   <li><a href="#projects" class="scroll">Projects</a></li>
  36.                   <li><a href="#contact">Contact</a></li>
  37.                   <li><a href="https://github.com/EDLJ" target="_blank">Resume</a></li>
  38.                 </ul>
  39.               </nav>
  40.             </div>
  41.           </div>
  42.           <div class="inner cover" id="container">
  43.  
  44.             <div class="section-wrapper" id="section-1">
  45.               <div class="section">
  46.                 <h1 class="cover-heading">Home Base</h1>
  47.             <p class="lead">Where self-taught experiments lead to results.</p>
  48.             <p class="lead">
  49.               <a href="#" class="btn btn-lg btn-default">Learn more</a>
  50.             </p>
  51.               </div>
  52.             </div>
  53.  
  54.             <div class="section-wrapper" id="section-2">
  55.               <div class="section">
  56.                 <p class="lead">Projects</p>
  57.                 <div id="fixed-size">
  58.                   <a href="http://www.google.com">
  59.                     <img src="project-thumb1.jpg" />
  60.                   </a>
  61.                   <a href="http://www.google.com">
  62.                     <img src="project-thumb2.jpg" />
  63.                   </a>
  64.                   <a href="http://www.google.com">
  65.                     <img src="project-thumb3.jpg" />
  66.                   </a>
  67.                   <a href="http://www.google.com">
  68.                     <img src="project-thumb4.jpg" />
  69.                   </a>
  70.                 </div>
  71.             </div>
  72.  
  73.             <div class="mastfoot">
  74.             <div class="inner">
  75.               <p>Portfolio, by <a href="http://www.linkedin.com/in/lavertyeddie" target="_blank">Edward Laverty</a>.</p>
  76.             </div>
  77.           </div>
  78.  
  79.       </div>
  80.     </div>
  81.   </div>
  82.  
  83.     <!-- Bootstrap core JavaScript
  84.    ================================================== -->
  85.     <!-- Placed at the end of the document so the pages load faster -->
  86.     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  87.     <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
  88.     <script src="jquery.nav.js"></script>
  89.     <script src="jquery.scrollify.min.js"></script>
  90.     <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.2.7/js/lightgallery.min.js"></script>
  91.     <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.2.7/js/lg-thumbnail.min.js"></script>
  92.     <script>
  93.         $(document).ready(function() {
  94.             $('#nav').onePageNav();
  95.         });
  96.     </script>
  97.   <script>
  98.     $(function() {
  99.       $.scrollify({
  100.       section : "section",
  101.       sectionName : "section-name",
  102.       easing: "easeOutExpo",
  103.       scrollSpeed: 1100,
  104.       offset : 0,
  105.       scrollbars: true,
  106.       before:function() {},
  107.       after:function() {},
  108.       afterResize:function() {}
  109.         })
  110.     </script>
  111.     <script type="text/javascript">
  112.     $(document).ready(function() {
  113.         $("#fixed-size").lightGallery({
  114.           mode: 'lg-fade',
  115.           height: '500px',
  116.           width: '500px',
  117.           addClass: 'fixed-size',
  118.           counter: false,
  119.           download: false,
  120.           startClass: '',
  121.           enableSwipe: false,
  122.           enableDrag: false,
  123.           speed: 500
  124.         });
  125.     });
  126. </script>
  127.   </body>
  128. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement