templates/crm/mailSingle.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Crm WroNieruchomości{% endblock %}
  3. {% block stylesheets %}
  4.     <link href="{{ asset('./build/app.css') }}" rel="stylesheet"/>
  5. {% endblock %}
  6. {% block body %}
  7.     <div class="app-container app-theme-white body-tabs-shadow fixed-sidebar fixed-header">
  8.         {% include 'crm/includes/headerShadow.html.twig' %}
  9.         {% include 'crm/includes/uiThemeSettings.html.twig' %}
  10.         <div class="app-main">
  11.             {% include 'crm/includes/appSidebar.html.twig' %}
  12.             <div class="app-main__outer">
  13.                 <div class="app-main__inner">
  14.                     {% include 'crm/includes/pageTitle.html.twig' %}
  15.                     <div class="row">
  16.                         <div class="col-lg-12">
  17.                             {% include 'crm/includes/emailSingle.html.twig' %}
  18.                         </div>
  19.                     </div>
  20.                 </div>
  21.                 {% include 'crm/includes/footer.html.twig' %}
  22.             </div>
  23. {#            <script src="http://maps.google.com/maps/api/js?sensor=true"></script>#}
  24.         </div>
  25.     </div>
  26.     <script type="text/javascript" src="{{ asset('./build/app.js') }}"></script>
  27.     <script type="text/javascript">
  28.         function runGetEmail() {
  29.             $.ajax({
  30.                 url: "/getEmail",
  31.                 data: {},
  32.                 type: "GET",
  33.                 async: true
  34.             })
  35.                 .done(function (data) {
  36.                     console.log(data);
  37.                 });
  38.         }
  39.         window.addEventListener ?
  40.             window.addEventListener("load", runGetEmail, false) :
  41.             window.attachEvent && window.attachEvent("onload", runGetEmail);
  42.     </script>
  43.     {# <style> #}
  44.     {# .example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; } #}
  45.     {# .example-wrapper code { background: #F5F5F5; padding: 2px 6px; } #}
  46.     {# </style> #}
  47.     {# <div class="example-wrapper"> #}
  48.     {# <h1>Hello {{ controller_name }}! ✅</h1> #}
  49.     {# This friendly message is coming from: #}
  50.     {# <ul> #}
  51.     {# <li>Your controller at <code><a href="{{ 'C:/xampp/htdocs/crmjanek/src/Controller/CrmController.php'|file_link(0) }}">src/Controller/CrmController.php</a></code></li> #}
  52.     {# <li>Your template at <code><a href="{{ 'C:/xampp/htdocs/crmjanek/templates/crm/index.html.twig'|file_link(0) }}">templates/crm/index.html.twig</a></code></li> #}
  53.     {# </ul> #}
  54.     {# </div> #}
  55. {% endblock %}