Start your All-Access Pass to unlock this challenge
Hey! I've prepared this template for a shiny new Pong page!
{% extends 'base.html.twig' %}
{% block title%}Play Pong in the Browser for Free!{% endblock %}
{% block metas %}{% endblock %}
{% block body %}
<div id="pong_game_app"></div>
{% endblock %}
But now... I want to avoid showing a "preview" if the user navigates back to this page. I've added a block metas
so that I can add the proper tag to the <head>
element to avoid the preview... but I can't seem to remember exactly how this is!
What is the actual meta
tag that we need to add to stop Turbo previews?