<!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> |