debshots/app/views/layouts/application.html.erb
Christoph Haas 2517dd6192 Disabled turbolinks cruft
Turolinks may be a nice feature to speed up page load times.
But it seriously makes event handling in jQuery harder and confusing
to debug. That's why it is now disabled.
2013-11-13 23:24:14 +01:00

14 lines
223 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<title>Debshots</title>
<%= stylesheet_link_tag "application", media: "all" %>
<meta charset='utf-8' />
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>