policy-or-privacy.blade.php 5.1 KB

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