{#
 # Category template
 # ---------------
 #
 # When this template gets loaded, it will be because someone has accessed
 # http://yoursite.com/ (without any URI). Craft checks to see if you have
 # a Single section set to be the Homepage (as you do, by default), and
 # loads the section’s Template (this file). A special ‘entry’ variable
 # will already be set for you, assigned to the Homepage entry.
 #
 # It's worth noting that even if you didn't have a Homepage Single section,
 # as long as this template remains at craft/templates/index.html, it
 # would still be the one to get loaded when accessing http://yoursite.com/,
 # albeit without an ‘entry’ variable already set for you.
 #
 # See this page for more details on how Craft routes requests:
 # http://craftcms.com/docs/routing
 #}
 
{% if entry.metaTitle|length %}
	{% set metaTitle = entry.metaTitle %}
{% else %}
	{% set metaTitle = entry.title %}
{% endif %}

{% set metaDescription = entry.metaDescription %}


{% extends "_layout" %}

{% block content %}


 <div class="container-xxl py-5 wow fadeInUp" data-wow-delay="0.1s">
        <div class="container">
            <div class="section-title text-center">
                <h1 class="display-5 mb-5">{{entry.title}}</h1>
            </div>
	             
	    
	        {{entry.contentBlock}}
	        
	        {%if entry.projectGallery|length %}
	        <div class="row">
	        {% for project in entry.projectGallery %}
	        	{% for image in project.projectImages %}
	        		<div class="col-md-6">
	        		{% for i in image.projectImage %}
	        	
	        		<img class="w-100" src="{{i.url}}" />
	        		
	        		{% endfor %}
	        	</div>
	        	{% endfor %}
	     {% endfor %}
	        </div>
		        
		        {% endif %}
	       
		</div>
</div>


{% endblock %}