1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <head>
-
- <script src="js/jquery-2.1.4.min.js"></script>
- <script src="js/handlebars-v3.0.3.js"></script>
- <script src="js/bootstrap.min.js"></script>
- <link href="css/bootstrap.css" rel="stylesheet">
- <link href="css/gallery.css" rel="stylesheet">
- </head>
- <body>
-
- <div id="content">
- </div>
-
- <script id="image-template" type="text/x-handlebars-template">
- <div class="title">
- <h1>{{title}}</h1>
- <h3 class="author">
- {{author}}
- </h3>
- <img style="height:600" src="{{src}}" />
- </div>
- </script>
-
- <script type="text/javascript">
-
- var source = $("#image-template").html();
-
- var template = Handlebars.compile(source);
-
- var data = {
- src: "images/The_Earth_seen_from_Apollo_17.jpg",
- title: "The Earth seen from Apollo 17",
- author: "Ed g2s"
- };
-
- var html = template(data);
-
- $('#content').html(html);
- </script>
- </body>
|