The footer too has some additional features. Such as credits, the store logo and legal links. You can find the footer element at the bottom of layout.html
.
<div class="footer">
<div class="container">
<div class="gdp-footer-left">
<p class="gdp-credits">© {{store.name}} <script>document.write(new Date().getFullYear());</script></p>
<p class="gdp-affiliate">We are not affiliated with Mojang AB.</p>
</div>
<div class="logo">
{% if store.logo %}
<a href="/"><img src="{{ store.logo }}" /></a>
{% endif %}
</div>
<div>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms</a></li>
</ul>
</div>
</div>
{% if store.branding or store.plan < 3 %}
<div class="branding">
<!-- Do not remove the Buycraft branding if you are not on the Ultimate Plan. Your account will be deleted. -->
{{ __("Powered by") }} <a href="<http://buycraft.net>" target="_blank">Buycraft.net</a>
</div>
{% endif %}
</div>
<aside> 📖 Note that you don't really have to change anything besides the paths of the legal links.
</aside>