{#
This is the base template of the all PUBLIC pages. Since this layout is similar
to the global layout, we inherit from it to just change the contents of some
blocks. In practice, backend templates are using a three-level inheritance,
showing how powerful, yet easy to use, is Twig's inheritance mechanism.
See https://symfony.com/doc/current/book/templating.html#template-inheritance-and-layouts
#}
{% extends 'base.html.twig' %}
{% block stylesheets %}
{{ parent() }}
{#Put scripts here that are common to all PUBLIC pages.#}
{{ encore_entry_link_tags('public/layout') }}
{% endblock %}
{% block body_class %}{{ parent() }} card-no-border{% endblock %}
{% block wrapper %}
<!-- ============================================================== -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- ============================================================== -->
<section id="wrapper">
<div class="container">
{% block body %}
{% block body_header %}
<img src="{{ asset('build/images/wlpga-logo.png') }}" class="img-fluid conference-logo" alt="myWLPGA" />
{% endblock %}
{% block main %}
{# <div>Override this for the child page's specific contents</div>#}
{% endblock %}
{% block body_footer %}
{# <div>PUBLIC FOOTER</div>#}
{% endblock %}
{% endblock %}
</div>
</section>
<!-- ============================================================== -->
<!-- End Wrapper -->
<!-- ============================================================== -->
{% endblock %}
{% block javascripts %}
{{ parent() }}
{#Put scripts here that are common to all PUBLIC pages.#}
{{ encore_entry_script_tags('public/layout') }}
{% endblock %}