vsgallery/tpl/layout.html
2022-01-10 17:14:35 +01:00

24 lines
869 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<script src="js/shortcut.js"></script>
<title>{% yield title %}</title>
</head>
<body>
{% yield content %}
<script>
addEventListener("DOMContentLoaded", function(){
shortcut.add("Left", function() { document.getElementById("link-prev").click(); }, { 'disable_in_input': true, 'propagate': true });
shortcut.add("Right", function() { document.getElementById("link-next").click(); }, { 'disable_in_input': true, 'propagate': true });
shortcut.add("Home", function() { document.getElementById("link-home").click(); }, {'disable_in_input': true, 'propagate': true });
});
</script>
</body>
</html>