29 lines
		
	
	
		
			No EOL
		
	
	
		
			931 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			No EOL
		
	
	
		
			931 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <section id="clients" class="section translucent-bg bg-image-2 pb-clear">
 | |
|   <div class="container object-non-visible" data-animation-effect="fadeIn">
 | |
|     <h2 class="title text-center">{{ i18n "home_clients_title" }}</h2>
 | |
|     <div class="space"></div>
 | |
| 
 | |
|     <div class="row">
 | |
|       {{ with index .Site.Data.client .Site.Language.Lang }}
 | |
|       {{ range sort . "title" }}
 | |
|       <div class="col-md-4">
 | |
|         <div class="media testimonial">
 | |
|           <div class="media-left">
 | |
|             <img src="{{ .flag }}">
 | |
|           </div>
 | |
|           <div class="media-body">
 | |
|             <h5 class="media-heading">{{ .title }}</h5>
 | |
|             <blockquote>
 | |
|               <p>{{ .description }}</p>
 | |
|               <footer>
 | |
|                 <cite title="Technologies">{{ .technologies }}</cite>
 | |
|               </footer>
 | |
|             </blockquote>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       {{ end }}
 | |
|       {{ end }}
 | |
|     </div>
 | |
|   </div>
 | |
| </section> | 
