templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Hello HomeController!{% endblock %}
  3. {% block body %}
  4. <style>
  5.     .example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif;
  6.         height: 80vh;
  7.         display: flex;
  8.         flex-direction: column;
  9.         justify-content: center; }
  10.     .example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
  11.     .text-center { text-align: center; }
  12.     img {
  13.         max-width: 150px;
  14.         left: 20px;
  15.         position: relative;
  16.     }
  17.     p {
  18.         margin-top: 0;
  19.     }
  20. </style>
  21. <div class="example-wrapper text-center">
  22.     <div class="logo">
  23.         <image src="https://cdn.shopify.com/s/files/1/0608/1232/9193/files/logo-gold_410x_1d33cf5b-c76b-411a-90ee-e071add22b29_410x.png?v=1638848646" alt="solgar logo">
  24.     </div>
  25.     <h1>Welcome to Solgar HCP App</h1>
  26.     <p>This app will give you basic data reporting system for health care practicioner as well as their patients and orders.</p>
  27. </div>
  28. {% endblock %}