36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% if featured.taxonomies.people %}
 | 
						|
    {% set people = get_section(path="people/_index.md") %}           
 | 
						|
    {% set pages_str = people.pages | json_encode() | as_str %}
 | 
						|
    {% if pages_str is containing(featured.taxonomies.people[0]) %}
 | 
						|
        {% set author_path = 'people/' ~ featured.taxonomies.people[0] ~ '/index.md' %}
 | 
						|
        {% set author = get_page(path=author_path) %}
 | 
						|
    {% endif %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
  <div class="md:grid md:grid-cols-2 md:gap-8 relative mt-16 lg:mt-16 items-center container mx-auto">
 | 
						|
    <div class="relative lg:ml-8 my-8 w-full md:w-auto">
 | 
						|
      <h3 class="text-base not-italic leading-6 text-gray-600">FEATURED POST</h3>
 | 
						|
      <a href={{featured.permalink}} class="">
 | 
						|
        <h2
 | 
						|
          class="mt-8 text-2xl main-title sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-4 md:mb-10 ">
 | 
						|
          {{ featured.title }}
 | 
						|
        </h2>
 | 
						|
      </a>
 | 
						|
      <h4 class="text-sm not-italic font-light leading-6 text-gray-600">
 | 
						|
        {{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}}
 | 
						|
      </h4>
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="mx-4 relative lg:mt-0 max-w-full">
 | 
						|
      <img class="relative mx-auto md:w-auto rounded md:max-w-full max-h-80" src={{featured.permalink}}{{featured.extra.imgPath}} alt="" />
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <hr class="mt-6">
 | 
						|
 | 
						|
  </div>
 | 
						|
  </div>
 | 
						|
</body> |