vendor/kobizo/core-bundle/src/Resources/views/backend/single-block.base.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}{% trans %}Log In{% endtrans %}{% endblock %}</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <meta content="Kobizo's login page" name="description" />
  8.     <meta content="Kobizo" name="author" />
  9.     <link rel="shortcut icon" href="{{ asset('bundles/kobizocore/images/favicon.ico') }}">
  10.     {% block stylesheets %}
  11.         {# App css #}
  12.         <link href="{{ asset('bundles/kobizocore/css/icons.min.css') }}" rel="stylesheet" type="text/css" />
  13.         <link href="{{ asset('bundles/kobizocore/css/app.min.css') }}" rel="stylesheet" type="text/css" id="light-style" />
  14.     {% endblock %}
  15. </head>
  16. <body class="authentication-bg">
  17. <div class="account-pages mt-5 mb-5">
  18.     <div class="container">
  19.         <div class="row justify-content-center">
  20.             <div class="col-lg-5">
  21.                 <div class="card">
  22.                     <div class="card-header pt-4 pb-4 text-center bg-primary">
  23.                         <a href="{{ path('home') }}">
  24.                             <span><img src="{{ asset('bundles/kobizocore/images/logo.png') }}" alt="Kobizo" height="36"></span>
  25.                         </a>
  26.                     </div>
  27.                     <div class="card-body p-4">
  28.                         {% block content %}{% endblock %}
  29.                     </div>
  30.                 </div>
  31.                 <div class="row mt-3">
  32.                     <div class="col-12 text-center">
  33.                         {% block bottom_content %}{% endblock %}
  34.                     </div>
  35.                 </div>
  36.             </div>
  37.         </div>
  38.     </div>
  39. </div>
  40. <footer class="footer footer-alt">
  41.     2018 - {{ "now"|date("Y") }} © Kobizo.com - {% trans %}All for Business{% endtrans %}
  42. </footer>
  43. {% block javascripts %}
  44.     {# bundle #}
  45.     <script src="{{ asset('bundles/kobizocore/js/vendor.min.js') }}"></script>
  46.     <script src="{{ asset('bundles/kobizocore/js/app.min.js') }}"></script>
  47. {% endblock %}
  48. </body>
  49. </html>