This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
var $slides = $('#slides'); | |
var gallery = { | |
templates: {}, | |
cacheTemplates: function() { | |
var self = this; | |
$("[type=\"text/x-handlebars\"]").each(function() { | |
self.templates[$(this).attr('id')] = Handlebars.compile($(this).html()); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en-US"> | |
<head> | |
<title>My first web page</title> | |
<meta charset="UTF-8" /> | |
</head> | |
<body> | |
<h1>Walter</h1> | |
<h2>Future front-end developer</h2> | |
<p><strong>Github profile: </strong><a href="lala">Walter</a></p> |
NewerOlder