12.21
This commit is contained in:
parent
ebf90ff869
commit
4e71ddabec
17 changed files with 448 additions and 101 deletions
|
|
@ -90,7 +90,11 @@
|
|||
</style>
|
||||
<body class="no-js">
|
||||
<div id="wrapper">
|
||||
{{ render(controller('AppBundle:Component:header')) }}
|
||||
{% if page is defined %}
|
||||
{{ render(controller('AppBundle:Component:header', {'page': page})) }}
|
||||
{% else %}
|
||||
{{ render(controller('AppBundle:Component:header', {'page': null})) }}
|
||||
{% endif %}
|
||||
{% block header2 %}
|
||||
<section class="section fullscreen background lozad" data-background-image="/bundles/app/images/travel/header-top-image3.jpg" style="background-image:url({{ asset('images/placeholder-image.png') }});">
|
||||
<div class="container-fluid">
|
||||
|
|
@ -119,7 +123,6 @@
|
|||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div id="fullwidth" class="col-sm-12">
|
||||
|
||||
{% block breadcrumb %}
|
||||
{% if page is defined %}
|
||||
{{ render(controller('AppBundle:Component:breadcrumb', {'page': page})) }}
|
||||
|
|
@ -170,6 +173,18 @@
|
|||
|
||||
{% block javascripts %}
|
||||
<script rel="preload" src="{{ asset('js/custom-min.js?v') }}{{ get_file_last_time('js/custom-min.js') }}"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
$('a.travel-booking-content-open').click(function (e) {
|
||||
e.preventDefault();
|
||||
$('a.travel-booking-content').tab('show');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
{% endblock javascripts %}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue