templates/base_investor_no_menu.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     <meta name="description" content="">
  8.     <meta name="author" content="">
  9.     <title>Squircle Capital Investor Portal</title>
  10.     <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('build/images/icon-squircle.png') }}">
  11.     <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('build/images/favicon-32x32.png') }}">
  12.     <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('build/images/favicon-16x16.png') }}">
  13.     {{ encore_entry_link_tags('investor_style') }}
  14.     <!-- Custom fonts for this template -->
  15.     <!-- Custom styles for this page -->
  16.     <link href="https://fonts.cdnfonts.com/css/georama-2" rel="stylesheet">
  17.     <link href="https://fonts.cdnfonts.com/css/pt-serif" rel="stylesheet">
  18. </head>
  19. <body id="page-top" style="height: 120vh">
  20. <!-- Page Wrapper -->
  21.     <div id="wrapper">
  22.         <!-- Content Wrapper -->
  23.         <div id="content-wrapper" class="d-flex flex-column background-blue-dark content-wrapper" style="">
  24.             <!-- Main Content -->
  25.             <div id="content">
  26.                 <img class="floating-img d-none d-lg-block" src="{{ asset("/build/images/structured_investment.png") }}">
  27.                 <!-- End of Topbar -->
  28.                 {% for message in app.flashes('success') %}
  29.                     <div class="alert alert-success">
  30.                         {{ message }}
  31.                     </div>
  32.                 {% endfor %}
  33.                 <!-- Begin Page Content -->
  34.                 {% block content %}
  35.                 {% endblock %}
  36.                 <!-- /.container-fluid -->
  37.             </div>
  38.             <!-- End of Main Content -->
  39.             <!-- Footer -->
  40.             <div class="footer mt-5">
  41.                 <div class="container">
  42.                     <div class="row">
  43.                         <div class="col-xxl-12 col-xl-12">
  44.                             <div class="office_address d-none d-xl-block">
  45.                                 <div class="office_wrapper_line"><div class="blue_border2"></div></div>
  46.                                 <div class="office_wrapper"><span class="office_area">LUXEMBOURG</span> Rue Pierre d'Aspelt 7 | 1142 Luxembourg</div>
  47.                                 <div class="office_wrapper"><span class="office_area">MILAN</span> Corso Europa 15 | 20122 Milano</div>
  48.                                 <div class="office_wrapper"><span class="office_area">BARCELONA</span> Avinguda Diagonal 640 | 08017 Barcelona</div>
  49.                             </div>
  50.                             <div class="office_address d-xl-none">
  51.                                 <div class="office_wrapper"><div class="blue_border2"></div></div>
  52.                                 <div class="office_wrapper"><span class="office_area">LUXEMBOURG</span><br> Rue Pierre d'Aspelt 7 |  1142 Luxembourg</div>
  53.                                 <div class="office_wrapper"><span class="office_area">MILAN</span><br> Corso Europa 15 |  20122 Milano</div>
  54.                                 <div class="office_wrapper"><span class="office_area">BARCELONA</span><br> Avinguda Diagonal 640 |  08017 Barcelona</div>
  55.                             </div>
  56.                             <br><br>
  57.                             <div class="legal_copyright">© {{ 'now' | date('Y') }} Squircle Capital</div>&nbsp;&nbsp;
  58.                         </div>
  59.                     </div>
  60.                 </div>
  61.             </div>
  62.         </div>
  63.     </div>
  64.     <style>
  65.         .footer {
  66.             background: rgb(237,237,237);
  67.             padding: 70px 0 30px 0;
  68.         }
  69.         .blue_border2 {
  70.             border-top: 3px solid rgb(97,130,185);
  71.             width: 40px;
  72.             display: inline-block;
  73.         }
  74.         .footer .office_address {
  75.             font-family: 'Georama', sans-serif;
  76.             font-weight: 400;
  77.             font-size: 18px;
  78.             line-height: 24px;
  79.             color: rgb(35,40,75);
  80.             padding: 0;
  81.         }
  82.         .footer .office_area {
  83.             font-family: 'PT Serif', serif;
  84.             font-weight: 400;
  85.             font-size: 18px;
  86.             line-height: 24px;
  87.             color: rgb(35 50 75);
  88.             font-weight: 600;
  89.         }
  90.         .footer .office_address .office_wrapper_line {
  91.             padding: 0 0 10px 0;
  92.         }
  93.         .footer .office_address .office_wrapper {
  94.             padding: 0;
  95.         }
  96.         .footer_legal {
  97.             padding: 30px 0 0 0;
  98.             font-family: 'PT Serif', serif;
  99.             font-weight: 400;
  100.         }
  101.         .footer-nav {
  102.             font-family: 'Georama', sans-serif;
  103.             display: inline-block;
  104.         }
  105.         .footer-nav ul {
  106.             list-style: none;
  107.             padding: 0 0 40px 0;
  108.             margin: 0;
  109.         }
  110.         .footer-nav li {
  111.             margin: 0;
  112.             padding: 0 20px 0 0;
  113.             font-size: 16px;
  114.             line-height: 22px;
  115.             display: inline;
  116.         }
  117.         .footer-nav a {
  118.             color: rgb(35,40,75);
  119.             text-decoration: underline;
  120.         }
  121.         .footer-nav a:hover {
  122.             color: rgb(97,130,185);
  123.             text-decoration:underline;
  124.         }
  125.         .legal_copyright {
  126.             display: inline-block;
  127.             font-size: 16px;
  128.             line-height: 22px;
  129.             font-family: 'Georama', sans-serif;
  130.             font-weight: 400;
  131.             color: rgb(35,40,75);
  132.         }
  133.         .social_media {
  134.             position: relative;
  135.             top: 40px;
  136.         }
  137.         .social_media a:hover i  {
  138.             color: rgb(97,130,185);
  139.             text-decoration: none;
  140.             -webkit-transition: color 0.3s linear;
  141.             -moz-transition: color 0.3s linear;
  142.             -ms-transition: color 0.3s linear;
  143.             -o-transition: color 0.3s linear;
  144.             transition: color 0.3s linear;
  145.         }
  146.     </style>
  147.     {% block javascripts %}
  148.         {{ encore_entry_script_tags('auth') }}
  149.     {% endblock %}
  150. </body>
  151. </html>