-
-
Save james-lukensow/6892362c3b79aff03bd7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<article data-type="carousel-location" class="wrapper__location contact-page carousel__main"> | |
<ul class="carousel" id="carousel__location"> | |
<li class="item"> | |
<div class="item__image"> | |
<img class="background__image" src="{{ $location->location_image->image }}" alt=""> | |
<div class="container__location"> | |
<div class="content-location"> | |
<div class="location__collum-one"> | |
<div class="container__location-clock"> | |
<h1 class="extra-large-text">{{{ $location->title }}}</h1> | |
<p>{{{ $location->city }}}, {{{ $location->state_abbreviation }}} <span>|</span> 0:00 am</p> | |
</div> | |
</div> | |
<div class="location__collum-two"> | |
<h1 class="temperature">{{{ $location->location_weather->temp_f }}}<sup>°f</sup>/{{{ $location->location_weather->temp_c }}}<sup>°c</sup></h1> | |
<img class="weather-icon {{{ $location->location_weather->icon }}}" alt="" src="images/location/fpo_weather_icon.png" /> | |
<h3 class="elevation">Elev. {{{ $location->elevation }}}'</h3> | |
<p><span class="longitude">{{{ $location->location_lng }}}</span>, <span class="langitude">{{{ $location->location_lat }}}</span></p> | |
@include('modules.contact-info') | |
<div class="location__container-cta"> | |
<h3>jobs in {{{ $location->city }}} ({{{ $location->related_jobs->count }}})</h3> | |
<a class="three-sided-border" >View These Opportunities</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</li> | |
@foreach ($location->location_gallery as $loc) | |
<li class="item"> | |
<img class="item__image" src="{{ $loc-> }}" alt=""> | |
</li> | |
@endforeach | |
</ul> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment