Given this very basic template:
<html>
<head>
<title>My Template</title>
{% block javascripts %}{% endblock %}
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>
How can we disable turbo on this page?