archive.blade.php 4.63 KB
Newer Older
Aan Choesni Herlingga committed
1 2
@extends('webprofile.front.jollyany.master')

3 4 5 6 7 8 9 10 11
@section('meta')
<meta name="{{ Str::slug($setting['web_title']) }}" content="custom"/>
  <meta name="description" content="{{ $setting['web_title'] }}">
  @if(array_key_exists('default_keyword', $setting))
<meta name="keywords" content="{{ $setting['default_keyword'] }}">
  @endif
<meta name="author" content="{{ $setting['web_title'] }}">
@endsection

Aan Choesni Herlingga committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
@section('content')
  <section class="post-wrapper-top jt-shadow clearfix">
    <div class="container">
      <div class="col-lg-12">
          <h2>{!! $title !!}</h2>
      </div>
    </div>
  </section><!-- end post-wrapper-top -->

  <section class="blog-wrapper">
    <div class="container">
      <div class="row">
        <div id="content" class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
          <div class="row">
              <div class="blog-masonry">
                  <div class="col-lg-12">
                      <div class="blog-carousel">
                          <div class="">
                              <div class="flexslider">
                                @foreach($data as $value)
                                @if ($title != 'Agenda')
                                <div class="row">
          							        	<div class="headline">
          							          		<h2><a  href="{!! url('post/'.$value->slug) !!}">{!! $value->title !!}</a></h2>
          							        	</div>
							                     <div class="news-text">
            								          <div class="col-lg-4">
                                        <a  href="{!! url('post/'.str_replace(' ', '-', $value->title)) !!}">
                                          @if($value->thumbnail)
                                            @if ($setting['external_storage'] == 1)
                                            <img src="{{ $setting['url_static'] . '/' . $setting['directory'] . '/thumbnail/' . $value->thumbnail }}" style="max-width:200px" align="left" class="img-responsive">
                                            @else
                                            <img src="{{ url('/storage/thumbnail/' . $value->thumbnail) }}" style="max-width:200px" align="left" class="img-responsive">
                                            @endif
                                          @else
                                            <img style="max-width:200px" align="left" class="img-responsive" src="https://www.unesa.ac.id/assets/switcher/images/logo.png">
                                          @endif
                                        </a>
                                      </div>
                                      <strong>{!! InseoHelper::tglbulanindo2($value->post_date) !!}</strong>
                                      <p>{!! strip_tags(substr(html_entity_decode($value->content,ENT_COMPAT,"UTF-8"),0 , 250)) !!}</p>
										                  <br>
                                      <a class="pull-right" style="padding-right: 20px;" href="{!! url('post/'.$value->slug) !!}">Selengkapnya &raquo;&raquo;</a>
							                      </div>
                                </div>
                                @else
                                <div class="row">
                                      <div class="headline">
60
                                          <h2><a target="_blank" href="{!! url('information/'.$value->slug) !!}">{!! $value->title !!}</a></h2>
Aan Choesni Herlingga committed
61 62 63 64
                                      </div>
                                    <div class="news-text">
                                      <strong> {!! InseoHelper::tglbulanindo2($value->event_date) !!}</strong> — 
                                      {!! strip_tags(substr(html_entity_decode($value->content,ENT_COMPAT,"UTF-8"),0 , 250)) !!}
Aan Choesni Herlingga committed
65
                                    <br><a class="pull-right" style="padding-right: 20px;"  target="_blank" href="{!! url('info/'.$value->slug) !!}">
Aan Choesni Herlingga committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
                                    Selengkapnya »»</a>
                                    </div>
                                </div>
                                @endif
                                @endforeach
									          </div>
                            <div class="clearfix"></div>
                            <hr>
                            {!! $data->render() !!}
                          </div><!-- end post-slider -->
                      </div><!-- end entry -->
                  </div><!-- end blog-carousel -->
        		  </div><!-- end blog-masonry -->
      	    </div><!-- end widget -->
          </div><!-- end left-sidebar -->
          @include('webprofile.front.jollyany.widget')
        </div>
    </div><!-- end container -->
  </section><!--end white-wrapper -->
@endsection