Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.58 KB | None | 0 0
  1. @extends('layout.layout')
  2.  
  3. @section('content')
  4.     <div class="panel panel-default">
  5.         <div class="panel-heading">
  6.             <h3 class="panel-title">Layouts</h3>
  7.         </div>
  8.         <div class="panel-body">
  9.                 <p>
  10.                     This layouts is converted or created by me, credits will be posted under each layout!<br/>
  11.                     All layouts on this page is converted for Znote AAC.<br/><br/>
  12.                     More information about <b>Znote AAC</b> can be found here.<br/>
  13.                     <a href="https://github.com/Znote/ZnoteAAC">https://github.com/Znote/ZnoteAAC</a>
  14.                 </p>
  15.                 <hr/>
  16.  
  17.                 @foreach (Layouts::all() as $layout)
  18.                         <?php $converted = explode(',', $layout->converted_by); ?>
  19.                         <?php $designed = explode(',', $layout->designed_by); ?>
  20.                         <?php $original = explode(',', $layout->original_link); ?>
  21.  
  22.                         <h3 class="panel-title">
  23.                             {{{ $layout->layout_name }}} <font color="#DF0101">[ HOT ]</font>
  24.                         </h3>
  25.                         <b>Converted by:</b> <a href="{{{ $converted[0] }}}" target="_blank">{{{ $converted[1] }}}</a><br/>
  26.                         <b>Designed by:</b> <a href="{{{ $designed[0] }}}" target="_blank">{{{ $designed[1] }}}</a><br/>
  27.                         <b>Development Images (PSD):</b> {{{ $layout->psd_images }}}<br/><br/>
  28.                        
  29.                         <a href="{{{ url('files/'.$layout->file_path) }}}" class="btn btn-success">Download</a><p><p>
  30.                        
  31.                         <img src="{{{ url('images/'.$layout->preview_image) }}}" width="100%"><br/>
  32.                         <b>Credits:</b> {{{ $layout->credits }}}<br>
  33.                         <b>Original Link:</b> <a href="{{{ $original[0] }}}" target="_blank">{{{ $original[1] }}}</a><br/>
  34.                     <hr/>
  35.                 @endforeach
  36.  
  37.         </div>
  38.     </div>
  39. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement