Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.05 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="">
  10.     <link rel="icon" href="../../favicon.ico">
  11.  
  12.     <title>Narrow Jumbotron Template for Bootstrap</title>
  13.  
  14.     <!-- Bootstrap core CSS -->
  15.     <link href="static/static/css/bootstrap.min.css" rel="stylesheet">
  16.  
  17.     <!-- Custom styles for this template -->
  18.     <link href="static/static/css/jumbotron-narrow.css" rel="stylesheet">
  19.  
  20.     <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
  21.     <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
  22.     <script src="../../assets/js/ie-emulation-modes-warning.js"></script>
  23.  
  24.     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  25.     <!--[if lt IE 9]>
  26.      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  27.      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  28.    <![endif]-->
  29.   </head>
  30.  
  31.   <body>
  32.  
  33.     <div class="container">
  34.       <div class="header clearfix">
  35.         <nav>
  36.           <ul class="nav nav-pills pull-right">
  37.             <li role="presentation" class="active"><a href="#">Home</a></li>
  38.             <li role="presentation"><a href="#">About</a></li>
  39.             <li role="presentation"><a href="#">Contact</a></li>
  40.           </ul>
  41.         </nav>
  42.         <h3 class="text-muted">Project name</h3>
  43.       </div>
  44.  
  45.       <div class="jumbotron">
  46.         {% block exam_content %}{% endblock %}
  47.       </div>
  48.  
  49.       <div class="row marketing">
  50.         <div class="col-lg-6">
  51.           <h4>Subheading</h4>
  52.           <p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p>
  53.  
  54.           <h4>Subheading</h4>
  55.           <p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.</p>
  56.  
  57.           <h4>Subheading</h4>
  58.           <p>Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
  59.         </div>
  60.  
  61.         <div class="col-lg-6">
  62.           <h4>Subheading</h4>
  63.           <p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p>
  64.  
  65.           <h4>Subheading</h4>
  66.           <p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.</p>
  67.  
  68.           <h4>Subheading</h4>
  69.           <p>Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
  70.         </div>
  71.       </div>
  72.  
  73.       <footer class="footer">
  74.         <p>&copy; Company 2014</p>
  75.       </footer>
  76.  
  77.     </div> <!-- /container -->
  78.  
  79.  
  80.     <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  81.     <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
  82.   </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement