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>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.                                             
  94.                                         </ul>
  95.                                         </div>
  96.                                         <div class="tab-content py-4" id="myTabContent">
  97.                                             {# 1st div: personal info #}
  98.                                             <div class="tab-pane fade show active border-0" id="tab1" role="tabpanel">
  99.                                                 <div class="row px-3">
  100.                                                     {# first name #}
  101.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  102.                                                         <div>
  103.                                                             <h3>First Name:</h3>
  104.                                                             
  105.                                                         </div>
  106.                                                         <p> <span class="inplace" data-set-method="setFirstname">{{ details.firstname is null?'First name':details.firstname }}</span>  </p>
  107.                                                     </div>
  108.                                                     {# last name #}
  109.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  110.                                                         <div>
  111.                                                             <h3>Last Name:</h3>
  112.                                                             
  113.                                                         </div>
  114.                                                         <p>  <span class="inplace" data-set-method="setLastname">{{ details.lastname is null?'Edit':details.lastname }}</span>  </p>
  115.                                                     </div>
  116.                                                 </div>
  117.                                         
  118.                                                 {# about-freelancer #}
  119.                                                 <div class="about-freelancer">
  120.                                                     <div>
  121.                                                         <h3>About Me</h3>
  122.                                                         
  123.                                                     </div>
  124.                                                     <p> <span class="inplace" data-set-method="" > </span>  </p>
  125.                                                 </div>
  126.                                                 {# 2nd part: others information #}
  127.                                                 <div class="row px-3">
  128.                                                     {# Contact Information Section #}
  129.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  130.                                                         <div>
  131.                                                             <h3>Contact no:</h3>
  132.                                                             
  133.                                                         </div>
  134.                                                         <p><span class="inplace" data-set-method="" ></span></p>
  135.                                                     </div>
  136.                                                     {# Optional Contact #}
  137.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  138.                                                         <div>
  139.                                                             <h3>Optional Contact no:</h3>
  140.                                                             
  141.                                                         </div>
  142.                                                         <p><span class="inplace" data-set-method=""></span></p>
  143.                                                     </div>
  144.                                                     {# National ID #}
  145.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  146.                                                         <div>
  147.                                                             <h3>National ID no:</h3>
  148.                                                             
  149.                                                         </div>
  150.                                                         <p><span class="inplace" data-set-method="setNid" data-field='nid'>{{ details.nid is null?'Edit':details.tin }}</span></p>
  151.                                                     </div>
  152.                                                     {# Passport No #}
  153.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  154.                                                         <div>
  155.                                                             <h3>Passport no:</h3>
  156.                                                             
  157.                                                         </div>
  158.                                                         <p><span class="inplace" data-set-method="" >91596999999</span></p>
  159.                                                     </div>
  160.                                                     {# TIN No #}
  161.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  162.                                                         <div>
  163.                                                             <h3>TIN no:</h3>
  164.                                                             
  165.                                                         </div>
  166.                                                         <p><span class="inplace" data-field='tin' data-set-method="setTin">{{ details.tin is null?'Edit':details.tin }}</span></p>
  167.                                                     </div>
  168.                                                     {# Date of Birth #}
  169.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  170.                                                         <div>
  171.                                                             <h3>Date of Birth:</h3>
  172.                                                            
  173.                                                         </div>
  174.                                                         {# {{ details.dob is null?'Edit':details.dob }} #}
  175.                                                         <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>
  176.                                                     </div>
  177.                                                     {# Gender #}
  178.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  179.                                                         <div>
  180.                                                             <h3>Gender:</h3>
  181.                                                             
  182.                                                         </div>
  183.                                                         <p><span class="inplace" data-field='sex' data-set-method="setSex">{{ details.sex is null?'Edit':details.sex }}</span></p>
  184.                                                     </div>
  185.                                                     {# Religion #}
  186.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  187.                                                         <div>
  188.                                                             <h3>Religion:</h3>
  189.                                                             
  190.                                                         </div>
  191.                                                         <p><span class="inplace" data-set-method=""></span></p>
  192.                                                     </div>
  193.                                                     {# Blood Group #}
  194.                                                     <div class="col-lg-4 col-md-6 col-12 about-freelancer">
  195.                                                         <div>
  196.                                                             <h3>Blood Group:</h3>
  197.                                                             
  198.                                                         </div>
  199.                                                         <p><span class="inplace" data-set-method="setBlood">{{ details.blood is null?'Edit':details.blood }}</span></p>
  200.                                                     </div>
  201.                                                 </div>
  202.                                                 {# address part #}
  203.                                                 <div class="row">
  204.                                                     {# Current Address #}
  205.                                                     <div class="col-12 col-md-6 col-lg-6 about-freelancer px-3">
  206.                                                         <div>
  207.                                                             <h3>Current Address:</h3>
  208.                                                             
  209.                                                         </div>
  210.                                                         {# {{ details.curr_addr is null?'Edit':details.curr_addr }} #}
  211.                                                         <p><span class="inplace"  data-set-method="setCurrAddr" >  {{ details.currAddr is null?'Edit':details.currAddr }} </span></p>
  212.                                                     </div>
  213.                                                     {# Permanent Address #}
  214.                                                     <div class="col-12 col-md-6 col-lg-6 about-freelancer">
  215.                                                         <div>
  216.                                                             <h3>Permanent Address:</h3>
  217.                                                             
  218.                                                         </div>
  219.                                                         {# {{ details.perm_addr is null?'Edit':details.perm_addr }} #}
  220.                                                         <p><span class="inplace" data-set-method="setPurrAddr" >  </span></p>
  221.                                                     </div>
  222.                                                 </div>
  223.                                             </div>
  224.                                             {# 2nd div: professional info #}
  225.                                             <div class="tab-pane fade" id="tab2" role="tabpanel">
  226.                                                 <div class="row p-3">
  227.                                                     {# Department #}
  228.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  229.                                                         <div>
  230.                                                             <h3>Department:</h3>
  231.                                                             
  232.                                                         </div>
  233.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Software</span></p>
  234.                                                     </div>
  235.                                                     {# Designation #}
  236.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  237.                                                         <div>
  238.                                                             <h3>Designation:</h3>
  239.                                                             
  240.                                                         </div>
  241.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Web Application Developer</span></p>
  242.                                                     </div>
  243.                                                     {# Branch #}
  244.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  245.                                                         <div>
  246.                                                             <h3>Branch:</h3>
  247.                                                             
  248.                                                         </div>
  249.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Uttara</span></p>
  250.                                                     </div>
  251.                                                     {# Location #}
  252.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  253.                                                         <div>
  254.                                                             <h3>Location:</h3>
  255.                                                             
  256.                                                         </div>
  257.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Uttara</span></p>
  258.                                                     </div>
  259.                                                     {# Supervisor Name #}
  260.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  261.                                                         <div>
  262.                                                             <h3>Supervisor Name:</h3>
  263.                                                             
  264.                                                         </div>
  265.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Mr. X</span></p>
  266.                                                     </div>
  267.                                                     {# Joining Date #}
  268.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  269.                                                         <div>
  270.                                                             <h3>Joining Date:</h3>
  271.                                                             
  272.                                                         </div>
  273.                                                         {# {{ details.joining_date is null?'Edit':details.joining_date }} #}
  274.                                                         <p><span class="inplace" data-set-method="" data-field-type="">showed error</span></p>
  275.                                                     </div>
  276.                                                     {# Probationary Period #}
  277.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  278.                                                         <div>
  279.                                                             <h3>Probationary Period:</h3>
  280.                                                             
  281.                                                         </div>
  282.                                                         <p><span class="inplace" data-set-method="" data-field-type="">3 months</span></p>
  283.                                                     </div>
  284.                                                     {# Employment Type #}
  285.                                                     <div class="col-12 col-md-6 col-lg-4 about-freelancer">
  286.                                                         <div>
  287.                                                             <h3>Employment Type:</h3>
  288.                                                             
  289.                                                         </div>
  290.                                                         <p><span class="inplace" data-set-method="" data-field-type="">Full time</span></p>
  291.                                                     </div>
  292.                                             
  293.                                                 </div>
  294.                                             </div>
  295.                                             {# 3rd div: epmloyee and educational info #}
  296.                                             <div class="tab-pane fade" id="tab3" role="tabpanel">
  297.                                                 {# skills #}
  298.                                                 <div >
  299.                                                     
  300.                                                     <div class='mb-4'>
  301.                                                         <h3>Skills on focus</h3>
  302.                                                        
  303.                                                         <p name="skill[]" id="skill" class="custom-width"
  304.                                                             data-set-method="setSkill"
  305.                                                             data-field-type="_JSON_"
  306.                                                             data-modify-trans-date="0" multiple>                      
  307.                                                         </p>
  308.                                                     </div>
  309.                                                     {# inplace used #}
  310.                                                     {# <span class="skill-tag ">Talent Acquisition & Recruitment</span>
  311.                                                     <span class="skill-tag">Recruitment</span>
  312.                                                     <span class="skill-tag">HR Management</span> #}
  313.                                                 </div>
  314.                                                 {# Employment history #}
  315.                                                 <h2 class="mt-2"> Employment history: </h2>
  316.                                                 <div id="employment-history" class="p-3">
  317.                                                     <div class="row employment-entry">
  318.                                                         {# Company name #}
  319.                                                         <div class="col-lg-4 col-md-6 col-12">
  320.                                                             <div class="about-freelancer ">
  321.                                                                 <div>
  322.                                                                     <h3> Company name</h3>
  323.                                                                     
  324.                                                                 </div>
  325.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> HoneyBee IOT Ltd. </span>  </p>
  326.                                                             </div>
  327.                                                         </div>
  328.                                                         
  329.                                                         
  330.                                                         {# Designation #}
  331.                                                         <div class="col-lg-4 col-md-6 col-12">
  332.                                                             <div class="about-freelancer">
  333.                                                                 <div>
  334.                                                                     <h3> Designation</h3>
  335.                                                                     
  336.                                                                 </div>
  337.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> Web </span>  </p>
  338.                                                             </div>
  339.                                                         </div>
  340.                                                         
  341.                                                         
  342.                                                         {# Work responsibility #}
  343.                                                         <div class="col-lg-4 col-md-6 col-12">
  344.                                                             <div class="about-freelancer">
  345.                                                                 <div>
  346.                                                                     <h3> Work responsibility </h3>
  347.                                                                     
  348.                                                                 </div>
  349.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> Frontend </span>  </p>
  350.                                                             </div>
  351.                                                         
  352.                                                         </div>
  353.                                                     
  354.                                                 
  355.                                                         {# year #}
  356.                                                         <div class="col-lg-4 col-md-6 col-12">
  357.                                                             <div class="about-freelancer">
  358.                                                                 <div>
  359.                                                                     <h3> year </h3>
  360.                                                                     
  361.                                                                 </div>
  362.                                                                 {# data-set-method="setworkExperienceYear" ekhane method er nam??? #}
  363.                                                                 <p> <span class="inplace " data-set-method="setworkExperienceYear"  data-field-type=""> {{ details.workExperienceYear is null?'Edit':details.workExperienceYear }} </span>  </p>
  364.                                                             </div>
  365.                                                         
  366.                                                         </div>
  367.                                                         
  368.                                                         {# duration #}
  369.                                                         <div class="col-lg-4 col-md-6 col-12">
  370.                                                             <div class="about-freelancer">
  371.                                                                 <div>
  372.                                                                     <h3> Duration </h3>
  373.                                                                     
  374.                                                                 </div>
  375.                                                                 <p> <span class="inplace " data-set-method=""  data-field-type=""> 1  </span>  </p>
  376.                                                             </div>
  377.                                                         </div>
  378.                                 
  379.                                                     </div>
  380.                                                 </div>
  381.                                                 
  382.                                                 <h2 class="mt-2"> Education history: </h2>
  383.                                                 {# Education history parts #}
  384.                                                 <div id="education-history" class="p-3" >
  385.                                                     <div class="row education-entry" >
  386.                                                         {# Institute name #}
  387.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  388.                                                             <div>
  389.                                                                 <h3> Institute name </h3>
  390.                                                                
  391.                                                             </div>
  392.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> UAP  </span>  </p>
  393.                                                         </div>
  394.                                                         {# Degree #}
  395.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  396.                                                             <div>
  397.                                                                 <h3> Degree </h3>
  398.                                                                 
  399.                                                             </div>
  400.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> Degree  </span>  </p>
  401.                                                         </div>
  402.                                                         {# Year #}
  403.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  404.                                                             <div>
  405.                                                                 <h3> Year </h3>
  406.                                                                 
  407.                                                             </div>
  408.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> 4  </span>  </p>
  409.                                                         </div>
  410.                                                         {# Duration #}
  411.                                                         <div class="about-freelancer col-lg-3 col-md-6 col-12">
  412.                                                             <div>
  413.                                                                 <h3> Duration </h3>
  414.                                                                
  415.                                                             </div>
  416.                                                             <p> <span class="inplace " data-set-method=""  data-field-type=""> 4  </span>  </p>
  417.                                                         </div>
  418.                                                     </div>
  419.                                                 </div>
  420.                                         
  421.                                                 
  422.                                             </div>
  423.                                         </div>
  424.                                     </div>
  425.                                 </div>
  426.                                 
  427.                             
  428.                             </div>
  429.                         </div>
  430.                         {# reviews #}
  431.                         <div class="row col-md-12 d-flex justify-content-center align-items-center">
  432.                             <div class="reviewer-info">
  433.                                 <div class="reviewer-profile-content">
  434.                                     <hr class="profile-separator1">
  435.                                     
  436.                                     <div class="profile">
  437.                                         <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="">
  438.                                         <div>
  439.                                             <h4 class="name">Minato Namikaze</h4>
  440.                                             <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Japan.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  441.                                             <span class="country-name">Japan</span>
  442.                                         </div>
  443.                                     </div>
  444.     
  445.                                     <div class="review">
  446.                                         <div class="stars">
  447.                                             <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>
  448.                                             <hr class="review-separator">
  449.                                             <span>1 Month Ago</span>
  450.                                         </div>
  451.     
  452.                                         <p>
  453.                                             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!
  454.                                         </p>
  455.                                     </div>
  456.                                     <hr class="profile-separator2">
  457.                                 </div>
  458.                                 <hr class="profile-separator3">
  459.                                 <div class="side-order">
  460.                                     <h5>Order</h5>
  461.                                     <ul>
  462.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  463.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  464.                                     </ul>
  465.                                 </div>
  466.                             </div>
  467.                             <div class="reviewer-info">
  468.                                 <div class="reviewer-profile-content">
  469.  
  470.                                     <div class="profile">
  471.                                         <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="">
  472.                                         <div>
  473.                                             <h4 class="name">Minato Namikaze</h4>
  474.                                             <img src="{{ absolute_url(path('dashboard')) }}honeybee_web_assets/images/freeprofile/Japan.svg?version={{ constant('ApplicationBundle\\Constants\\GeneralConstant::ENTITY_APP_VERSION') }}" alt="">
  475.                                             <span class="country-name">Japan</span>
  476.                                         </div>
  477.                                     </div>
  478.     
  479.                                     <div class="review">
  480.                                         <div class="stars">
  481.                                             <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>
  482.                                             <hr class="review-separator">
  483.                                             <span>1 Month Ago</span>
  484.                                         </div>
  485.     
  486.                                         <p>
  487.                                             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!
  488.                                         </p>
  489.                                     </div>
  490.                                 </div>
  491.                                 <hr class="profile-separator3">
  492.                                 <div class="side-order">
  493.                                     <h5>Order</h5>
  494.                                     <ul>
  495.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  496.                                         <li>Nunc ridiculus dolor lor culu volutpgula donec phareta gula donec pharetra dui pat dui conv...</li>
  497.                                     </ul>
  498.                                 </div>
  499.                             </div>
  500.                             <div class="pagination-container d-flex justify-content-center align-items-center">
  501.                                 <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>
  502.                                 <div class="page-info mx-3"><span class="active">1</span> out of 6</div>
  503.                                 <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>
  504.                             </div>
  505.                         </div>
  506.                 
  507.                     </div>
  508. </div>                
  509. <!-- freelancer Section end -->
  510. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}