@extends('dashboard::layouts.app-user') @section('app-user-content') {{--@if($hackathons->isEmpty())--}} {{--
--}} {{--Not Found--}} {{--
--}} {{--@endif--}}

@if(isset($myHackathonsTitle)) {{ $myHackathonsTitle }} @else RECENT HACKATHONS @endif

@include('dashboard::partials.session') @if(Request::query('phrase'))

Found {{ $resultCount }} results, searched by phrase: "{{ Request::query('phrase') }}"

Back to list
@endif @if(!$hackathons->isEmpty())
@foreach($hackathons as $hackathon)
Loader
@if(!$hackathon->files->isEmpty()) Image @else @endif

{{ $hackathon->title }}

{!! $hackathon->teaser !!}
{!! $hackathon->present()->showLinkToPayPalOrButtonStartHackathon($hackathon) !!}
@if($hackathon->is_demo == 0) {{ $hackathon->people_purchased }} purchased, @endif {{ $hackathon->people_finished }} finished
@endforeach
@include('dashboard::partials.pagination', ['paginator' => $hackathons, 'linkLimit' => 7]) @else
epic_
programming_is_
coming
_soon
@endif
@endsection