{{-- Template Name: Home --}} @extends('layouts.app') @section('content') @while(have_posts()) @php the_post() @endphp
Contact
@content
@php $index = 0 @endphp @fields('home_projects') @php $id = get_sub_field('project')->ID; $link = get_permalink($id); $title = get_the_title($id); $image_url = get_the_post_thumbnail_url($id, 'full'); @endphp @if($index < 1) @endif @php $index++ @endphp @endfields
@php $index = 0 @endphp @fields('home_projects')
@php $id = get_sub_field('project')->ID; $link = get_permalink($id); $image_url = get_the_post_thumbnail_url($id, 'full'); $title = get_the_title($id); $alignment = get_sub_field('alignment'); // second project if(get_sub_field('project_two')){ $id2 = get_sub_field('project_two')->ID; $link2 = get_permalink($id2); $image_url2 = get_the_post_thumbnail_url($id2, 'custom'); $title2 = get_the_title($id2); } @endphp @if($index >= 1) {!! $title !!} @if($alignment == "two") {!! $title2 !!} @endif @endif @php $index++ @endphp
@endfields
Awards @fields('home_awards') @php $id = get_sub_field('project')->ID; $link = get_permalink($id); @endphp @sub('title') @endfields
@group('home_name_title')
@sub('name') @sub('title')
@endgroup @group('home_contact')
@sub('title')
@sub('email')
T: @sub('phone')
@endgroup
@endwhile @endsection