<!DOCTYPE html> | |
<html> | |
%= include 'partial/header' | |
<body style="background-color:white"> | |
<main<% if (stash('embedded')) { %> class="embedded"<% } %>> | |
%= content 'main' => begin | |
<p>Welcome to the tutorial</p> | |
% end | |
</main> | |
%= notifications 'Alertify' | |
%= javascript begin | |
$("li,code,#sidebar").on("click", function () { | |
$(this).toggleClass('active'); | |
}); | |
% end | |
</body> | |
</html> |