index.blade.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. @extends('module.layouts.content')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
  6. <style>
  7. .width_image {width:1200px;display:block;margin:0 auto;}
  8. .full_image {width:100%;max-width:1920px;display:block;margin:0 auto;}
  9. </style>
  10. @endpush
  11. @push('js')
  12. @endpush
  13. @section('content')
  14. <img src="{{ theme_asset('app/images/backgroundcheck/1.jpg') }}?v=2" class="full_image" alt="">
  15. <img src="{{ theme_asset('app/images/backgroundcheck/2.jpg') }}?v=2" class="width_image" alt="">
  16. <img src="{{ theme_asset('app/images/backgroundcheck/3.jpg') }}?v=2" class="width_image" alt="">
  17. <img src="{{ theme_asset('app/images/backgroundcheck/4.jpg') }}?v=2" class="width_image" alt="">
  18. <img src="{{ theme_asset('app/images/backgroundcheck/5.jpg') }}?v=2" class="width_image" alt="">
  19. <img src="{{ theme_asset('app/images/backgroundcheck/6.jpg') }}?v=2" class="width_image" alt="">
  20. <img src="{{ theme_asset('app/images/backgroundcheck/7.jpg') }}?v=2" class="full_image" alt="">
  21. @endsection
  22. @section('script')
  23. <script>
  24. $(function(){
  25. });
  26. </script>
  27. @endsection