policy-or-privacy.blade.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. @extends('views.layouts.master')
  2. <link rel="stylesheet" href="{{ csset('/themes/point2u/pro/resources/css/privacy.css') }}">
  3. @section('content')
  4. <div class="sub qna qna_write">
  5. <div class="container">
  6. <div class="navi">
  7. <a href="/"><i class="fa-solid fa-house"></i> 홈</a> > 개인정보취급방침
  8. </div>
  9. <div class="title">
  10. <h2>개인정보취급방침</h2>
  11. </div>
  12. </div>
  13. <!--=====================================
  14. BANNER PART START
  15. =======================================-->
  16. <!--
  17. <section class="inner-section single-banner" style="background: url(images/single-banner.jpg) no-repeat center;" id="item-1">
  18. <div class="container">
  19. <h2>사이트 {{ $title }}</h2>
  20. <ol class="breadcrumb">
  21. <li class="breadcrumb-item"><a href="/">Home</a></li>
  22. <li class="breadcrumb-item active" aria-current="page">사이트 {{ $title }}</li>
  23. </ol>
  24. </div>
  25. </section>
  26. -->
  27. <!--=====================================
  28. BANNER PART END
  29. =======================================-->
  30. <!--=====================================
  31. PRIVACY PART START
  32. =======================================-->
  33. <section class="inner-section privacy-part">
  34. <div class="container">
  35. <div class="row">
  36. <div class="col-lg-3">
  37. <nav class="nav nav-pills flex-column" id="scrollspy">
  38. <a class="nav-link-a {{ request()->routeIs('policy.show') ? 'active' : ''}}" href="{{ route('policy.index') }}">약관</a>
  39. <a class="nav-link-a {{ request()->routeIs('privacy.show') ? 'active' : ''}}" href="{{ route('privacy.index') }}">개인정보 보호정책</a>
  40. </nav>
  41. </div>
  42. <div class="col-lg-12">
  43. <div data-bs-spy="scroll" data-bs-target="#scrollspy" data-bs-offset="0" tabindex="0">
  44. <div class="scrollspy-content">
  45. <div class="d-flex align-items-center justify-content-between mb-4">
  46. <h3 class="mb-0">{{ $post['PostTitle'] }}</h3>
  47. <span class="text-muted tw-text-xl collapsed">{{ DateTime::createFromFormat("Ymd" , $post['OfficialDate'])->format('Y-m-d') }} {{ $post['OfficialTime'] }}</span>
  48. </div>
  49. <p>{!! $post['PostContents'] !!}</p>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. {{-- @php--}}
  55. {{-- switch ($post['PostTypeId'] ) {--}}
  56. {{-- case 11:--}}
  57. {{-- $routeName = 'policy.show';--}}
  58. {{-- break;--}}
  59. {{-- case 12:--}}
  60. {{-- $routeName = 'privacy.show';--}}
  61. {{-- break;--}}
  62. {{-- case 14:--}}
  63. {{-- $routeName = 'e-finance.show';--}}
  64. {{-- break;--}}
  65. {{-- case 15:--}}
  66. {{-- $routeName = 'refund.show';--}}
  67. {{-- break;--}}
  68. {{-- }--}}
  69. {{-- @endphp--}}
  70. {{-- @if (count($policyPage['Page']) - 1 > $currKey)--}}
  71. {{-- @php $beforePolicy = $policyPage['Page'][$currKey + 1]; @endphp--}}
  72. {{-- <div class="d-flex justify-content-end mt-1">--}}
  73. {{-- <a href="{{ route($routeName, $beforePolicy['PostSlug'] ?: $beforePolicy['Id']) }}" class="btn btn-outline-secondary before-police-btn">--}}
  74. {{-- {{ DateTime::createFromFormat("Ymd" , $beforePolicy['OfficialDate'])->format(__('Y년 m월 d일')) }} {{ $title }} @lang('보기')--}}
  75. {{-- </a>--}}
  76. {{-- </div>--}}
  77. {{-- @elseif (count($policyPage['Page']) > 1)--}}
  78. {{-- @php $beforePolicy = $policyPage['Page'][0]; @endphp--}}
  79. {{-- <div class="d-flex justify-content-end mt-1">--}}
  80. {{-- <a href="{{ route($routeName, $beforePolicy['PostSlug'] ?: $beforePolicy['Id']) }}" class="btn btn-outline-secondary before-police-btn">--}}
  81. {{-- {{ DateTime::createFromFormat("Ymd" , $beforePolicy['OfficialDate'])->format(__('Y년 m월 d일')) }} {{ $title }} @lang('보기')--}}
  82. {{-- </a>--}}
  83. {{-- </div>--}}
  84. {{-- @endif--}}
  85. </div>
  86. </section>
  87. <!--=====================================
  88. PRIVACY PART END
  89. =======================================-->
  90. </div>
  91. <!--=====================================
  92. JS LINK PART START
  93. =======================================-->
  94. <!-- VENDOR -->
  95. {{--<script src="vendor/bootstrap/jquery-1.12.4.min.js"></script>--}}
  96. {{--<script src="vendor/bootstrap/popper.min.js"></script>--}}
  97. {{--<script src="vendor/bootstrap/bootstrap.min.js"></script>--}}
  98. {{--<script src="vendor/countdown/countdown.min.js"></script>--}}
  99. {{--<script src="vendor/niceselect/nice-select.min.js"></script>--}}
  100. {{--<script src="vendor/slickslider/slick.min.js"></script>--}}
  101. {{--<script src="vendor/venobox/venobox.min.js"></script>--}}
  102. {{--<!-- CUSTOM -->--}}
  103. {{--<script src="js/nice-select.js"></script>--}}
  104. {{--<script src="js/countdown.js"></script>--}}
  105. {{--<script src="js/accordion.js"></script>--}}
  106. {{--<script src="js/venobox.js"></script>--}}
  107. {{--<script src="js/slick.js"></script>--}}
  108. {{--<script src="js/main.js"></script>--}}
  109. <!--=====================================
  110. JS LINK PART END
  111. =======================================-->
  112. @endsection