master
Raw Download raw file
 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    <meta name="description" content="">
 8    <meta name="author" content="">
 9    <link rel="shortcut icon" href="../../assets/ico/favicon.ico">
10
11    <title>KittyCam!</title>
12
13    <!-- Bootstrap core CSS -->
14    <link href="./css/bootstrap.min.css" rel="stylesheet">
15
16    <!-- Custom styles for this template -->
17    <link href="./css/jumbotron-narrow.css" rel="stylesheet">
18
19    <!-- Just for debugging purposes. Don't actually copy this line! -->
20    <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
21
22    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
23    <!--[if lt IE 9]>
24      <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
25      <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
26    <![endif]-->
27  </head>
28
29  <body>
30
31    <div class="container">
32      <div class="header">
33        <!---<ul class="nav nav-pills pull-right">
34          <li class="active"><a href="#">Home</a></li>
35          <li><a href="#">About</a></li>
36        </ul> --->
37        <h3 class="text-muted">KittyCam!</h3>
38      </div>
39
40      <div class="row">
41        <div class="col-xs-6 col-md-6">
42          <a href="#" class="thumbnail">
43            <img class="kittycam" src="./kittycam1" alt="kittycam1">
44          </a>
45        </div>
46        <div class="col-xs-6 col-md-6">
47          <a href="#" class="thumbnail">
48            <img class="kittycam" src="./kittycam2" alt="kittycam2">
49          </a>
50        </div>
51      </div>
52      <div class="footer">
53        <p>&copy; KittyCam 2014</p>
54      </div>
55
56    </div> <!-- /container -->
57
58
59    <!-- Bootstrap core JavaScript
60    ================================================== -->
61    <script src="./js/jquery-1.10.2.min.js"></script>
62    <script src="./js/jquery.imgrefresh-1.1.js"></script>
63    <script>
64      $('.kittycam').click(function() {
65        $(this).imgrefresh();
66      });
67      var autorefresh = setInterval(
68      function()
69      {
70        $('.kittycam').each(function(){$(this).imgrefresh();});
71      }, 1000);
72    </script>
73    <!-- Placed at the end of the document so the pages load faster -->
74  </body>
75</html>