src/Social/FrontendBundle/Resources/views/layout_homepage.html.twig line 57

Open in your IDE?
  1. {% extends 'SocialFrontendBundle::layout_base.html.twig' %}
  2. {% block stylesheets %}
  3.     {% stylesheets filter="?yui_css, cssrewrite"
  4.     "bundles/socialfrontend/css/theme/vendor/bootstrap.min.css"
  5.     "bundles/socialfrontend/css/theme/custom/stylesheet-complete-new.min.css"
  6.     "bundles/socialfrontend/css/theme/custom/responsive.css"
  7.     "bundles/socialfrontend/css/theme/vendor/jcarousel.responsive.css"
  8.     "bundles/socialfrontend/css/theme/vendor/bootstrap-scrolling-nav.css"
  9.     "bundles/socialfrontend/css/app/custom/non-account.css"
  10.     "bundles/socialfrontend/css/app/custom/modal-style.css"
  11.     "bundles/socialfrontend/css/theme/vendor/bootstrap-datepicker.min.css"
  12.         "bundles/socialfrontend/css/theme/vendor/font-awesome-5/css/fontawesome.min.css"
  13.         "bundles/socialfrontend/css/theme/vendor/font-awesome-5/css/all.min.css"
  14.     "bundles/socialfrontend/css/app/custom/main-new.css" %}
  15.     <link href="{{ asset_url }}" rel="stylesheet" media="screen"/>
  16.     {% endstylesheets %}
  17.     {#<link href="//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet"/>#}
  18. {% endblock %}
  19. {% block javascripts %}
  20.     {{ parent() }}
  21.     {% if app.user %}
  22.         {% if ( app.user.newLocation is null and  app.user.isFake == false ) %}
  23.             <script type="text/javascript">var userCompletedProfile = false</script>
  24.         {% endif %}
  25.     {% else %}
  26.         <script type="text/javascript">var userCompletedProfile = false</script>
  27.     {% endif %}
  28.     {% javascripts filter="?yui_js"
  29.     "bundles/socialfrontend/js/theme/vendor/jquery.js"
  30.     "bundles/socialfrontend/js/theme/vendor/bootstrap.min.js"
  31.     "bundles/socialfrontend/js/theme/vendor/bootstrap-datepicker.js"
  32.     "bundles/socialfrontend/js/theme/vendor/bootstrap-scrolling-nav.js"
  33.     "bundles/socialfrontend/js/theme/vendor/jquery.easing.min.js"
  34.     "bundles/socialfrontend/js/vendor/bootbox/bootbox.js"
  35.     "bundles/socialfrontend/js/app/custom/main.js"
  36.     "bundles/socialfrontend/js/app/custom/registration/registration.js" %}
  37.     <script type="text/javascript" src="{{ asset_url }}"></script>
  38.     {% endjavascripts %}
  39.     <script>var App = {};</script>
  40.     <script>
  41.         if (/*@cc_on!@*/ false && document.documentMode === 10) {
  42.             document.documentElement.className += ' ie ie10';
  43.         }
  44.     </script>
  45. {% endblock %}
  46. {% block body %}
  47.     {% include 'SocialFrontendBundle::body.html.twig' %}
  48.     <div id="content">
  49.         {% block content %}{% endblock %}
  50.     </div>
  51.     {% include 'SocialFrontendBundle::layout_footer_base.html.twig' %}
  52.     </body>
  53. {% endblock %}