Remove animate.css (#222)
This commit is contained in:
		| @@ -7,19 +7,21 @@ | ||||
| <section class="hero-section overlay bg-cover hero-default" data-background="{{ .bg_image | absURL }}"> | ||||
|   <div class="container"> | ||||
|     <div class="hero-slider"> | ||||
|       {{ range .slider_item }} | ||||
|       <div class="hero-slider-item"> | ||||
|         <div class="row"> | ||||
|           <div class="col-md-8"> | ||||
|           <div class="col-md-12"> | ||||
|             <h2 class="text-white">{{ $data.homepage.slider.title | markdownify }}</h2> | ||||
|             <p class="text-muted mb-4" data-animation-out="fadeOut{{.animation_out | title }}" data-delay-out="5" data-duration-in=".3" data-animation-in="fadeIn{{.animation_in | title }}" data-delay-in="0">{{ .content | markdownify }}</p> | ||||
|             {{ if .button.enable }} | ||||
|             <a href="{{ .button.link | absLangURL }}" class="btn btn-primary" data-animation-out="fadeOut{{.animation_out | title }}" data-delay-out="5" data-duration-in=".3" data-animation-in="fadeIn{{.animation_in | title }}" data-delay-in="0">{{ .button.label }}</a> | ||||
|             <div class="hero-slider-items"> | ||||
|             {{ range .slider_item }} | ||||
|               <div class="hero-slider-item"> | ||||
|                 <p class="text-muted mb-4" >{{ .content | markdownify }}</p> | ||||
|                 {{ if .button.enable }} | ||||
|                   <a href="{{ .button.link | absLangURL }}" class="btn btn-primary">{{ .button.label }}</a> | ||||
|                 {{ end }} | ||||
|               </div> | ||||
|             {{ end }} | ||||
|             </div> | ||||
|           </div> | ||||
|         </div> | ||||
|       </div> | ||||
|       {{ end }} | ||||
|     </div> | ||||
|   </div> | ||||
| </section> | ||||
| @@ -33,20 +35,18 @@ | ||||
|   <section class="hero-section overlay bg-cover" style="background-image: url({{ $data.homepage.slider.bg_image | absURL }});"> | ||||
|     <div class="container"> | ||||
|       <div class="hero-slider"> | ||||
|         {{ range first 1 $data.homepage.slider.slider_item }} | ||||
|         <div class="hero-slider-item"> | ||||
|           <div class="row"> | ||||
|             <div class="col-md-8"> | ||||
|             <div class="col-md-12"> | ||||
|               <h1 class="text-white">{{ $data.homepage.slider.title | markdownify }}</h1> | ||||
|               <p class="text-muted mb-4">{{ .content | markdownify }}</p> | ||||
|               {{ if .button.enable }} | ||||
|               <a href="{{ .button.link | absLangURL }}" class="btn btn-primary" data-animation-out="fadeOut{{.animation_out | title }}" data-delay-out="5" data-duration-in=".3" data-animation-in="fadeIn{{.animation_in | title }}" data-delay-in=".7">{{ .button.label }}</a> | ||||
|               {{ range first 1 $data.homepage.slider.slider_item }} | ||||
|                 <p class="text-muted mb-4">{{ .content | markdownify }}</p> | ||||
|                 {{ if .button.enable }} | ||||
|                   <a href="{{ .button.link | absLangURL }}" class="btn btn-primary">{{ .button.label }}</a> | ||||
|                 {{ end }} | ||||
|               {{ end }} | ||||
|             </div> | ||||
|           </div> | ||||
|         </div> | ||||
|         {{ end }} | ||||
|       </div> | ||||
|     </div> | ||||
|   </section> | ||||
| </noscript> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user