src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/pages/freelancer_profile.html.twig line 1

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. <!-- freelancer Section Start -->
  3. <div class="free-profile-page section">
  4.                     <div class="container">
  5.                 
  6.                         <div class="row">
  7.                             <div class="col-md-12 d-flex justify-content-center align-items-center">
  8.                                 <div class="free-profile-page-info">
  9.                                     <h1 class="section-title">Freelancer Profile </h1>
  10.                                 </div>
  11.                             </div>
  12.                         </div>
  13.                         <div class="row col-md-12 d-flex justify-content-center align-items-center">
  14.                             <div class="profile-header">
  15.                               <div class="profile-info">
  16.                                 <img class="porfile-img" src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Ellipse.png?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="Profile Picture">
  17.                                 <div class="badge">
  18.                                     <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/badge1.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  19.                                     <span class="position">1st</span>
  20.                                 </div>
  21.                                 <div class="profile-details">
  22.                                   <h2>RoroNoa Zoro</h2>
  23.                                   <div class="rating">
  24.                                     <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/star.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt=""><span>4.5</span>
  25.                                   </div>
  26.                                   <p><span>Profession:</span> HR</p>
  27.                                   <p><span>Experience:</span> <strong class="experience">5 Years</strong></p>
  28.                                   <p><span>Country:</span> Bangladesh</p>
  29.                                   <p><span>Languages:</span> Bengali, English, Hindi</p>
  30.                                 </div>
  31.                               </div>
  32.                               <hr class="separator">
  33.                               <div class="book-appointment">
  34.                                 <h4>Book an Appointment</h4>
  35.                                 <h3>$20/Hour</h3>
  36.                                 <button>Book Appointment</button>
  37.                                 <p>Typically replies within <strong class='dark-span-text'>1 hour</strong></p>
  38.                               </div>
  39.                             </div>
  40.                         </div>
  41.                         <div class="row col-md-12 d-flex justify-content-center align-items-center">
  42.                             <div class="profile-details-section">
  43.                                 <div class="expert-in">
  44.                                   <h3>Expert in</h3>
  45.                                   <p>HR Consulting, HR Management</p>
  46.                                 </div>
  47.                                 
  48.                                 <h2> Profile Details </h2> 
  49.                                 <div class="profile-details py-2">
  50.                                     <div class="container-xxl">
  51.                                         <div class="tab-wrapper">
  52.                                         <ul
  53.                                             class="nav nav-tabs d-flex justify-content-start border-bottom"
  54.                                             id="myTab"
  55.                                             role="tablist"
  56.                                         >
  57.                                             <li class="nav-item" role="presentation">
  58.                                             <button
  59.                                                 class="nav-link active"
  60.                                                 id="tab1-tab"
  61.                                                 data-bs-toggle="tab"
  62.                                                 data-bs-target="#tab1"
  63.                                                 type="button"
  64.                                                 role="tab"
  65.                                             >
  66.                                                 Personal Info
  67.                                             </button>
  68.                                             </li>
  69.                                             <li class="nav-item" role="presentation">
  70.                                             <button
  71.                                                 class="nav-link"
  72.                                                 id="tab2-tab"
  73.                                                 data-bs-toggle="tab"
  74.                                                 data-bs-target="#tab2"
  75.                                                 type="button"
  76.                                                 role="tab"
  77.                                             >
  78.                                                 Professional Info
  79.                                             </button>
  80.                                             </li>
  81.                                             <li class="nav-item" role="presentation">
  82.                                             <button
  83.                                                 class="nav-link"
  84.                                                 id="tab3-tab"
  85.                                                 data-bs-toggle="tab"
  86.                                                 data-bs-target="#tab3"
  87.                                                 type="button"
  88.                                                 role="tab"
  89.                                             >
  90.                                                 Employee & Educational Info
  91.                                             </button>
  92.                                             </li>
  93.                                         </ul>
  94.                                         </div>
  95.                                         <div class="tab-content py-4" id="myTabContent">
  96.                                             {# 1st div: personal info #}
  97.                                             <div class="tab-pane fade show active border-0" id="tab1" role="tabpanel">
  98.                                                 <div class="row px-3">
  99.                                                     {# first name #}
  100.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  101.                                                         <div>
  102.                                                             <h3>First Name:</h3>
  103.                                                             
  104.                                                         </div>
  105.                                                         <p> <span class="inplace" data-set-method="setFirstname">{{ details.firstname is null?'First name':details.firstname }}</span>  </p>
  106.                                                     </div>
  107.                                                     {# last name #}
  108.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  109.                                                         <div>
  110.                                                             <h3>Last Name:</h3>
  111.                                                             
  112.                                                         </div>
  113.                                                         <p>  <span class="inplace" data-set-method="setLastname">{{ details.lastname is null?'Edit':details.lastname }}</span>  </p>
  114.                                                     </div>
  115.                                                 </div>
  116.                                         
  117.                                                 {# about-freelancer #}
  118.                                                 <div class="about-freelancer">
  119.                                                     <div>
  120.                                                         <h3>About Me</h3>
  121.                                                         
  122.                                                     </div>
  123.                                                     <p> <span class="inplace" data-set-method="" > </span>  </p>
  124.                                                 </div>
  125.                                                 {# 2nd part: others information #}
  126.                                                 <div class="row px-3">
  127.                                                     {# Contact Information Section #}
  128.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  129.                                                         <div>
  130.                                                             <h3>Contact no:</h3>
  131.                                                             
  132.                                                         </div>
  133.                                                         <p><span class="inplace" data-set-method="" ></span></p>
  134.                                                     </div>
  135.                                                     {# Optional Contact #}
  136.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  137.                                                         <div>
  138.                                                             <h3>Optional Contact no:</h3>
  139.                                                             
  140.                                                         </div>
  141.                                                         <p><span class="inplace" data-set-method=""></span></p>
  142.                                                     </div>
  143.                                                     {# National ID #}
  144.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  145.                                                         <div>
  146.                                                             <h3>National ID no:</h3>
  147.                                                             
  148.                                                         </div>
  149.                                                         <p><span class="inplace" data-set-method="setNid" data-field='nid'>{{ details.nid is null?'Edit':details.tin }}</span></p>
  150.                                                     </div>
  151.                                                     {# Passport No #}
  152.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  153.                                                         <div>
  154.                                                             <h3>Passport no:</h3>
  155.                                                             
  156.                                                         </div>
  157.                                                         <p><span class="inplace" data-set-method="" >91596999999</span></p>
  158.                                                     </div>
  159.                                                     {# TIN No #}
  160.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  161.                                                         <div>
  162.                                                             <h3>TIN no:</h3>
  163.                                                             
  164.                                                         </div>
  165.                                                         <p><span class="inplace" data-field='tin' data-set-method="setTin">{{ details.tin is null?'Edit':details.tin }}</span></p>
  166.                                                     </div>
  167.                                                     {# Date of Birth #}
  168.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  169.                                                         <div>
  170.                                                             <h3>Date of Birth:</h3>
  171.                                                            
  172.                                                         </div>
  173.                                                         {# {{ details.dob is null?'Edit':details.dob }} #}
  174.                                                         <p><span class="inplace" data-field='dob' data-set-method="setDob" data-field-type="_DATE_">{{ details.dob is null?'Edit':details.dob|date('Y-m-d') }}</span></p>
  175.                                                     </div>
  176.                                                     {# Gender #}
  177.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  178.                                                         <div>
  179.                                                             <h3>Gender:</h3>
  180.                                                             
  181.                                                         </div>
  182.                                                         <p><span class="inplace" data-field='sex' data-set-method="setSex">{{ details.sex is null?'Edit':details.sex }}</span></p>
  183.                                                     </div>
  184.                                                     {# Religion #}
  185.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  186.                                                         <div>
  187.                                                             <h3>Religion:</h3>
  188.                                                             
  189.                                                         </div>
  190.                                                         <p><span class="inplace" data-set-method=""></span></p>
  191.                                                     </div>
  192.                                                     {# Blood Group #}
  193.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  194.                                                         <div>
  195.                                                             <h3>Blood Group:</h3>
  196.                                                             
  197.                                                         </div>
  198.                                                         <p><span class="inplace" data-set-method="setBlood">{{ details.blood is null?'Edit':details.blood }}</span></p>
  199.                                                     </div>
  200.                                                 </div>
  201.                                                 {# address part #}
  202.                                                 <div class="row">
  203.                                                     {# Current Address #}
  204.                                                     <div class="col-12 col-md-6 col-lg-6 about-freelancer px-3">
  205.                                                         <div>
  206.                                                             <h3>Current Address:</h3>
  207.                                                             
  208.                                                         </div>
  209.                                                         {# {{ details.curr_addr is null?'Edit':details.curr_addr }} #}
  210.                                                         <p><span class="inplace"  data-set-method="setCurrAddr" >  {{ details.currAddr is null?'Edit':details.currAddr }} </span></p>
  211.                                                     </div>
  212.                                                     {# Permanent Address #}
  213.                                                     <div class="col-12 col-md-6 col-lg-6 about-freelancer">
  214.                                                         <div>
  215.                                                             <h3>Permanent Address:</h3>
  216.                                                             
  217.                                                         </div>
  218.                                                         {# {{ details.perm_addr is null?'Edit':details.perm_addr }} #}
  219.                                                         <p><span class="inplace" data-set-method="setPurrAddr" >  </span></p>
  220.                                                     </div>
  221.                                                 </div>
  222.                                             </div>
  223.                                             {# 2nd div: professional info #}
  224.                                             <div class="tab-pane fade" id="tab2" role="tabpanel">
  225.                                                 <div class="row p-3">
  226.                                                     {# Department #}
  227.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  228.                                                         <div>
  229.                                                             <h3>Department:</h3>
  230.                                                             
  231.                                                         </div>
  232.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Software</span></p>
  233.                                                     </div>
  234.                                                     {# Designation #}
  235.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  236.                                                         <div>
  237.                                                             <h3>Designation:</h3>
  238.                                                             
  239.                                                         </div>
  240.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Web Application Developer</span></p>
  241.                                                     </div>
  242.                                                     {# Branch #}
  243.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  244.                                                         <div>
  245.                                                             <h3>Branch:</h3>
  246.                                                             
  247.                                                         </div>
  248.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Uttara</span></p>
  249.                                                     </div>
  250.                                                     {# Location #}
  251.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  252.                                                         <div>
  253.                                                             <h3>Location:</h3>
  254.                                                             
  255.                                                         </div>
  256.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Uttara</span></p>
  257.                                                     </div>
  258.                                                     {# Supervisor Name #}
  259.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  260.                                                         <div>
  261.                                                             <h3>Supervisor Name:</h3>
  262.                                                             
  263.                                                         </div>
  264.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Mr. X</span></p>
  265.                                                     </div>
  266.                                                     {# Joining Date #}
  267.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  268.                                                         <div>
  269.                                                             <h3>Joining Date:</h3>
  270.                                                             
  271.                                                         </div>
  272.                                                         {# {{ details.joining_date is null?'Edit':details.joining_date }} #}
  273.                                                         <p><span class="inplace" data-set-method="" data-field-type="">showed error</span></p>
  274.                                                     </div>
  275.                                                     {# Probationary Period #}
  276.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  277.                                                         <div>
  278.                                                             <h3>Probationary Period:</h3>
  279.                                                             
  280.                                                         </div>
  281.                                                         <p><span class="inplace" data-set-method="" data-field-type="">3 months</span></p>
  282.                                                     </div>
  283.                                                     {# Employment Type #}
  284.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  285.                                                         <div>
  286.                                                             <h3>Employment Type:</h3>
  287.                                                             
  288.                                                         </div>
  289.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Full time</span></p>
  290.                                                     </div>
  291.                                             
  292.                                                 </div>
  293.                                             </div>
  294.                                             {# 3rd div: epmloyee and educational info #}
  295.                                             <div class="tab-pane fade" id="tab3" role="tabpanel">
  296.                                                 {# skills #}
  297.                                                 <div >
  298.                                                     
  299.                                                     <div class='mb-4'>
  300.                                                         <h3>Skills on focus</h3>
  301.                                                        
  302.                                                         <p name="skill[]" id="skill" class="custom-width"
  303.                                                             data-set-method="setSkill"
  304.                                                             data-field-type="_JSON_"
  305.                                                             data-modify-trans-date="0" multiple>                      
  306.                                                         </p>
  307.                                                     </div>
  308.                                                     {# inplace used #}
  309.                                                     {# <span class="skill-tag ">Talent Acquisition & Recruitment</span>
  310.                                                     <span class="skill-tag">Recruitment</span>
  311.                                                     <span class="skill-tag">HR Management</span> #}
  312.                                                 </div>
  313.                                                 {# Employment history #}
  314.                                                 <h2 class="mt-2"> Employment history: </h2>
  315.                                                 <div id="employment-history" class="p-3">
  316.                                                     <div class="row employment-entry">
  317.                                                         {# Company name #}
  318.                                                         <div class="col-lg-4 col-md-6 col-12">
  319.                                                             <div class="about-freelancer ">
  320.                                                                 <div>
  321.                                                                     <h3> Company name</h3>
  322.                                                                     
  323.                                                                 </div>
  324.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> HoneyBee IOT Ltd. </span>  </p>
  325.                                                             </div>
  326.                                                         </div>
  327.                                                         
  328.                                                         
  329.                                                         {# Designation #}
  330.                                                         <div class="col-lg-4 col-md-6 col-12">
  331.                                                             <div class="about-freelancer">
  332.                                                                 <div>
  333.                                                                     <h3> Designation</h3>
  334.                                                                     
  335.                                                                 </div>
  336.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> Web </span>  </p>
  337.                                                             </div>
  338.                                                         </div>
  339.                                                         
  340.                                                         
  341.                                                         {# Work responsibility #}
  342.                                                         <div class="col-lg-4 col-md-6 col-12">
  343.                                                             <div class="about-freelancer">
  344.                                                                 <div>
  345.                                                                     <h3> Work responsibility </h3>
  346.                                                                     
  347.                                                                 </div>
  348.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> Frontend </span>  </p>
  349.                                                             </div>
  350.                                                         
  351.                                                         </div>
  352.                                                     
  353.                                                 
  354.                                                         {# year #}
  355.                                                         <div class="col-lg-4 col-md-6 col-12">
  356.                                                             <div class="about-freelancer">
  357.                                                                 <div>
  358.                                                                     <h3> year </h3>
  359.                                                                     
  360.                                                                 </div>
  361.                                                                 {# data-set-method="setworkExperienceYear" ekhane method er nam??? #}
  362.                                                                 <p> <span class="inplace " data-set-method="setworkExperienceYear"  data-field-type=""> {{ details.workExperienceYear is null?'Edit':details.workExperienceYear }} </span>  </p>
  363.                                                             </div>
  364.                                                         
  365.                                                         </div>
  366.                                                         
  367.                                                         {# duration #}
  368.                                                         <div class="col-lg-4 col-md-6 col-12">
  369.                                                             <div class="about-freelancer">
  370.                                                                 <div>
  371.                                                                     <h3> Duration </h3>
  372.                                                                     
  373.                                                                 </div>
  374.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> 1  </span>  </p>
  375.                                                             </div>
  376.                                                         </div>
  377.                                 
  378.                                                     </div>
  379.                                                 </div>
  380.                                                 
  381.                                                 <h2 class="mt-2"> Education history: </h2>
  382.                                                 {# Education history parts #}
  383.                                                 <div id="education-history" class="p-3" >
  384.                                                     <div class="row education-entry" >
  385.                                                         {# Institute name #}
  386.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  387.                                                             <div>
  388.                                                                 <h3> Institute name </h3>
  389.                                                                
  390.                                                             </div>
  391.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> UAP  </span>  </p>
  392.                                                         </div>
  393.                                                         {# Degree #}
  394.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  395.                                                             <div>
  396.                                                                 <h3> Degree </h3>
  397.                                                                 
  398.                                                             </div>
  399.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> Degree  </span>  </p>
  400.                                                         </div>
  401.                                                         {# Year #}
  402.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  403.                                                             <div>
  404.                                                                 <h3> Year </h3>
  405.                                                                 
  406.                                                             </div>
  407.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> 4  </span>  </p>
  408.                                                         </div>
  409.                                                         {# Duration #}
  410.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  411.                                                             <div>
  412.                                                                 <h3> Duration </h3>
  413.                                                                
  414.                                                             </div>
  415.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> 4  </span>  </p>
  416.                                                         </div>
  417.                                                     </div>
  418.                                                 </div>
  419.                                         
  420.                                                 
  421.                                             </div>
  422.                                         </div>
  423.                                     </div>
  424.                                 </div>
  425.                                 
  426.                             
  427.                             </div>
  428.                         </div>
  429.                         {# reviews #}
  430.                         <div class="row col-md-12 d-flex justify-content-center align-items-center">
  431.                             <div class="reviewer-info">
  432.                                 <div class="reviewer-profile-content">
  433.                                     <hr class="profile-separator1">
  434.                                     
  435.                                     <div class="profile">
  436.                                         <img class="profile-img" src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Ellipse.png?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  437.                                         <div>
  438.                                             <h4 class="name">Minato Namikaze</h4>
  439.                                             <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Japan.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  440.                                             <span class="country-name">Japan</span>
  441.                                         </div>
  442.                                     </div>
  443.     
  444.                                     <div class="review">
  445.                                         <div class="stars">
  446.                                             <div><img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/star.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt=""><span class="star">5</span></div>
  447.                                             <hr class="review-separator">
  448.                                             <span>1 Month Ago</span>
  449.                                         </div>
  450.     
  451.                                         <p>
  452.                                             Exceptional HR expertise! [Freelancer's Name] helped streamline our hiring process and implement effective HR policies. Their professionalism and attention to detail made a significant impact on our team. Highly recommended!
  453.                                         </p>
  454.                                     </div>
  455.                                     <hr class="profile-separator2">
  456.                                 </div>
  457.                                 <hr class="profile-separator3">
  458.                                 <div class="side-order">
  459.                                     <h5>Order</h5>
  460.                                     <ul>
  461.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  462.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  463.                                     </ul>
  464.                                 </div>
  465.                             </div>
  466.                             <div class="reviewer-info">
  467.                                 <div class="reviewer-profile-content">
  468.  
  469.                                     <div class="profile">
  470.                                         <img class="profile-img" src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Ellipse.png?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  471.                                         <div>
  472.                                             <h4 class="name">Minato Namikaze</h4>
  473.                                             <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Japan.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  474.                                             <span class="country-name">Japan</span>
  475.                                         </div>
  476.                                     </div>
  477.     
  478.                                     <div class="review">
  479.                                         <div class="stars">
  480.                                             <div><img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/star.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt=""><span class="star">5</span></div>
  481.                                             <hr class="review-separator">
  482.                                             <span>1 Month Ago</span>
  483.                                         </div>
  484.     
  485.                                         <p>
  486.                                             A true HR specialist! From talent acquisition to employee engagement strategies, [Freelancer's Name] exceeded our expectations. Their insights and proactive approach improved our workplace culture. Will definitely work with them again!
  487.                                         </p>
  488.                                     </div>
  489.                                 </div>
  490.                                 <hr class="profile-separator3">
  491.                                 <div class="side-order">
  492.                                     <h5>Order</h5>
  493.                                     <ul>
  494.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  495.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  496.                                     </ul>
  497.                                 </div>
  498.                             </div>
  499.                             <div class="pagination-container d-flex justify-content-center align-items-center">
  500.                                 <button id="blogPrevPageBtn" ><img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/icons/arrow-left.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt=""> Previous</button>
  501.                                 <div class="page-info mx-3"><span class="active">1</span> out of 6</div>
  502.                                 <button id="blogNextPageBtn" >Next <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/icons/arrow-right.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt=""></button>
  503.                             </div>
  504.                         </div>
  505.                 
  506.                     </div>
  507. </div>                
  508. <!-- freelancer Section end -->
  509. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}