Bullets weiter einrücken Silder Höhen anpassen .form-inline .dropdown margin bottom h1 in Templates ändern. bower.json Button Text vertical middle (span table-cell) Box Höhe auch wenn kein Text mit fester Höhe. confirm Booking Seite angelegt. Bug BookingRequestValidator //use AppBundle\Entity\BookingRequest; Slider Austausch Bilder git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3310 f459cee4-fb09-11de-96c3-f9c5f16c3c76
26 lines
No EOL
677 B
Twig
26 lines
No EOL
677 B
Twig
{% extends get_base_template() %}
|
|
|
|
{#
|
|
{% block nav_sidebar_widget %}
|
|
{% include 'default/components/sidebar/navSidebarWidget.html.twig' %}
|
|
{% endblock %}
|
|
#}
|
|
|
|
{% block body %}
|
|
<section class="clearfix">
|
|
<h1>{{ page.pagetitle|default(page.title) }}</h1>
|
|
|
|
{#{% for i in 0..page.children|length//3 %}#}
|
|
<div class="row">
|
|
{% for child_page in page.children if child_page.status == 1 %}
|
|
|
|
{% include 'default/components/pageBox.html.twig' %}
|
|
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="clearfix">
|
|
{{ page.content|raw|keywords }}
|
|
</section>
|
|
{% endblock %} |