page.blade.php 733 Bytes
Newer Older
Aan Choesni Herlingga committed
1 2 3 4 5 6
@extends('webprofile.front.jollyany.master')

@section('content')
  <section class="post-wrapper-top jt-shadow clearfix">
    <div class="container">
      <div class="col-lg-12">
7
        @if ($data->rEn)
Aan Choesni Herlingga committed
8
          <h2>{!! $data->rEn->title !!}</h2>
9
        @endif
Aan Choesni Herlingga committed
10 11 12 13 14 15 16 17
      </div>
    </div>
  </section><!-- end post-wrapper-top -->

  <section class="blog-wrapper">
    <div class="container">
        <div class="row">
          <div id="main-content" class="col-md-12" role="main" align="justify">
18
            @if ($data->rEn)
Aan Choesni Herlingga committed
19
            {!! $data->rEn->content !!}
20
            @endif
Aan Choesni Herlingga committed
21 22 23 24 25 26
          </div>
        </div>
      </div><!-- end title -->
    </div><!-- end container -->
  </section><!--end white-wrapper -->
@endsection