templates/Companies/home.html.twig line 1

Open in your IDE?
  1. {% include 'includes/company-home-header.html.twig' %}
  2.         <div class="parent">
  3.             <div id="banner">
  4.                 <img src="/var/assets{{Companies.CompanyImage}}" alt="" id="banner-img">
  5.                 <!-- <img src="https://images.remotehub.com/a14b0e9664c111ecb2c1be1f7a0bcd4d/180x180/ae6c4137.jpg?version=1640354336"> -->
  6.             </div>
  7.             {% include 'includes/company-sidebar.html.twig' %}
  8.             <div id="home-right">
  9.                 <div id="heading-div">
  10.                 {% if Companies.businessName|length %}
  11.                     <span>
  12.                         {# <img src="/var/assets{{Companies.companyLogo}}" alt="" style="width:80px;height:50px;"> #}
  13.                         <h2 style=" font-size:22px; color: #05100D;">{{Companies.businessName}}</h2>
  14.                     </span>
  15.                     {{Companies.ShortDescription | raw}}
  16.                     <span id="com-span">{{Companies.ServiceProvided}}&nbsp;.&nbsp;{{Companies.Location}}&nbsp;.&nbsp;{{Companies.Followers}}</span>
  17.                     {% endif %}
  18.                 </div>
  19.                 <div class="content-div">
  20.                 {% if Companies.Description|length %}
  21.                     <div id="overview">
  22.                         <h4 style="font-size:18px;">Overview</h4>
  23.                         {{Companies.Description | raw}}
  24.                     </div>
  25.                     {% endif %}
  26.                     <div id="specialities">
  27.                         <h4 style="font-size:18px;">Specialities</h4>
  28.                         {{Companies.Specialities | raw}}
  29.                     </div>
  30.                 </div>    
  31.             </div>
  32.         </div>
  33. {% include 'includes/company-footer.html.twig' %}
  34. <style>
  35.     #heading-div p{
  36.         font-size:14px;
  37.         font-Style: oblique;
  38.         color: #858480;
  39.     }
  40.     #com-span{
  41.         padding-top:20px;
  42.         font-size:12px;
  43.         font-style:italic;
  44.         color:#5F5439;
  45.     }
  46.     #overview p{
  47.         font-size: 15px!important;
  48.         word-spacing: 2px!important;
  49.         padding: 5px!important;
  50.         color: #05100D!important;
  51.         font-style:oblique!important;
  52.     }
  53.     #overview{
  54.         padding:10px!important;
  55.         font-size: 18px;
  56.         font-style: oblique;
  57.         color: #05100D;
  58.     }
  59.     #specialities{
  60.         padding:10px!important;
  61.         font-size: 18px;
  62.         font-style: oblique;
  63.         color: #241B04;
  64.     }
  65.     #specialities p{
  66.         font-size: 15px!important;
  67.         word-spacing: 2px!important;
  68.         padding: 5px!important;
  69.         color: #494847!important;
  70.         font-style:oblique!important;
  71.     }
  72.     #banner-img{
  73.         width:100%;
  74.         height:300px;
  75.     }
  76.     #heading-div{
  77.         padding: 20px;
  78.     }
  79.     #home-right{
  80.         width:75%;
  81.         float:left;
  82.         background-color:#FCFFFE;
  83.         height:1000px;
  84.         padding:16px;
  85.         display:inline;
  86.     }
  87.     .parent {    
  88.         width:100%;
  89.     }     
  90. </style>
  91. <script type="text/javascript">
  92.    // alert('hi');
  93. </script>