<!-- BEGIN RECENT WORKS -->
<div class="row recent-work margin-bottom-40">
	<div class="col-md-3">
		<h2><a href="portfolio.html">Recent Activity</a></h2>
		<p>{{ $page_activityintro }}</p>
	</div>

	<div class="col-md-9">
		<div class="owl-carousel owl-carousel3">
			{{-- @todo These should scroll --}}
			@php($c=0)
			@foreach ($page_activity as $o)
				<div class="recent-work-item">
					<em>
						<img src="{{ $o['image_small'] }}" alt="{{ $o['title'] }}" class="img-responsive">
						<a href="#"><i class="fa fa-link"></i></a>
						{{-- If this is a jpeg instead of a URL, it renders a nice popup --}}
						<a href="{{ $o['image_large'] }}/{{$c}}.jpg" class="fancybox-button" title="Project Name #{{$c}}" data-rel="fancybox-button"><i class="fa fa-search"></i></a>
					</em>
					<a class="recent-work-description" href="javascript:;">
						<strong>{{ $o['title'] }}</strong>
						<b>{{ $o['subtitle'] }}</b>
					</a>
				</div>
				@php($c++)
			@endforeach
		</div>
	</div>
</div>
<!-- END RECENT WORKS -->