templates/pages/blocks/about_skills_section.html.twig line 1

Open in your IDE?
  1.     <section class="about__skills {{content.AboutSkillsSecBackground}}" data-brand-header data-counter-animations data-stagger="0.4">
  2.       <div class="grid-container">
  3.         <div class="about__title title title__center">
  4.           <div class="out" data-css-animation="out-in" style="--delay: .3s">
  5.             <div class="in">
  6.               <h3>{{ content.AboutSkillsSecTitle }}</h3>
  7.             </div>
  8.           </div>
  9.         </div>
  10.         <div class="about__text" data-css-animation="fade-in-up" style="--delay: .4s">
  11.           {{ content.AboutSkillsSecContent | raw }}
  12.         </div>
  13.         <div class="about__counters">
  14.           {% for item in content.blocks %}
  15.             <div class="about__counter">
  16.               <svg width="260" height="260" viewBox="0 0 260 260" fill="none" xmlns="http://www.w3.org/2000/svg"
  17.                    data-circle-animation>
  18.                 <circle cx="130" cy="130" r="125" stroke="#f7f7f7" stroke-width="10"/>
  19.               </svg>
  20.               <div class="about__counter-content">
  21.                 <p>
  22.                     <span data-counter-animation data-from="0" data-to="{{ item.AboutSkillsSecBlockTitle }}"></span>
  23.                 </p>
  24.                 <p style="font-weight: bold">{{ item.AboutSkillsSecBlockContent|raw }}</p>
  25.               </div>
  26.             </div>
  27.           {% endfor %}
  28.         </div>
  29.       </div>
  30.     </section>