blob: ac7f8f73d280c8354ddecdb19a2715f3676ebb37 [file] [log] [blame]
<!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
var sidebar = document.getElementById("sidebar");
if (sidebar !== null) {
sidebar.addEventListener("click",function(){
this.classList.toggle("active");
},false);
};
% end
</body>
</html>