Start your All-Access Pass to unlock this challenge
My animal rescue website has a page with very useful contact numbers. And since this info is so useful, I'd like to also show this information at the bottom of every page!
My footer looks like this:
<div id="footer">
<p>Emergency Contact Numbers:</p>
<turbo-frame id="contact-numbers" src="{{ path('contact_numbers') }}"></turbo-frame>
</div>
And my contact page has all of its content in the body
block.
{% block body %}
<h1>Useful Contact Numbers</h1>
<p>Here are some useful contact numbers in case you are in an emergency and
in need of help!</p>
<p><strong>Hope for Paws</strong>: +1 310-880-1416</p>
<p><strong>National Mill Dog Rescue</strong>: +1 719-683-3334</p>
<p><strong>Catskill Animal Sanctuary</strong>: +1 845-336-8447</p>
{% endblock %}
How can I make turbo load only the contact information into my footer?