Created
September 9, 2014 17:06
-
-
Save mhoang/7f8e0a8317745f75bf6a 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="images/location/background__weather-boulder.jpg" 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> | |
<li class="item"> | |
<img class="item__image" src="images/location/fpo-office-01.jpg" alt=""> | |
</li> | |
<li class="item"> | |
<img class="item__image" src="images/location/background__weather-boulder.jpg" alt=""> | |
</li> | |
<li class="item"> | |
<img class="item__image" src="images/location/fpo-office-01.jpg" alt=""> | |
</li> | |
</ul> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment