Skip to content

Commit

Permalink
Partners public template
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebacker committed Jun 18, 2014
1 parent 01afc7c commit aa67491
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<div class="col-xs-4 col-sm-3 col-md-2">
<a href="{{ route($lang.'.partners.slug', $partner->slug) }}" class="thumbnail">
<div class="img-container">
<!-- <img class="img-responsive" src="{{ Croppa::url('/uploads/partners/' . $partner->image, 200, 200, array('resize')) }}" alt=""> -->
<img class="img-responsive" src="{{ $partner->logo->url('md') }}" alt="">
<img class="img-responsive" src="{{ $partner->present()->thumb(null, 200, array(), 'logo') }}" alt="">
</div>
<div class="caption">
<p><small>{{ $partner->title }}</small></p>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@section('main')

<h2>{{ $model->title }}</h2>
<img src="{{ $model->logo->url('md') }}" alt="">
<p>{{ $model->url }}</p>
<img src="{{ $model->present()->thumb(null, 200, array(), 'logo') }}" alt="">
<p><a href="{{ $model->website }}" target="_blank">{{ $model->website }}</a></p>
<div>{{ $model->body }}</div>

@stop

0 comments on commit aa67491

Please sign in to comment.