|
@@ -0,0 +1,37 @@
|
|
|
+@extends('module.layouts.content')
|
|
|
+
|
|
|
+@push('meta')
|
|
|
+
|
|
|
+@endpush
|
|
|
+
|
|
|
+@push('css')
|
|
|
+<link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
|
|
|
+<style>
|
|
|
+ .img_box {width:1200px;margin:0 auto;}
|
|
|
+ .img_box img {width:100%;display:block;}
|
|
|
+</style>
|
|
|
+@endpush
|
|
|
+
|
|
|
+@push('js')
|
|
|
+
|
|
|
+@endpush
|
|
|
+
|
|
|
+@section('content')
|
|
|
+ <div class="img_box">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/1.jpg') }}" alt="">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/2.jpg') }}" alt="">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/3.jpg') }}" alt="">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/4.jpg') }}" alt="">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/5.jpg') }}" alt="">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/6.jpg') }}" alt="">
|
|
|
+ <img src="{{ theme_asset('app/images/backgroundcheck/7.jpg') }}" alt="">
|
|
|
+ </div>
|
|
|
+@endsection
|
|
|
+
|
|
|
+@section('script')
|
|
|
+ <script>
|
|
|
+ $(function(){
|
|
|
+
|
|
|
+ });
|
|
|
+ </script>
|
|
|
+@endsection
|