employment.blade.php 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @component('home.layouts.component', ['title' => 'صفحه فرصت‌های شغلی'])
  2. @slot('style')
  3. @endslot
  4. @slot('content_top')
  5. @endslot
  6. @slot('content')
  7. <section class="employment-list-holder">
  8. <div class="container">
  9. <h2 class="title">
  10. فرصت‌های شغلی
  11. </h2>
  12. <div class="title-desc">
  13. لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است. چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی می باشد.
  14. </div>
  15. <div>
  16. <div class="accordion" id="accordionExample">
  17. <div class="accordion-item">
  18. <h2 class="accordion-header" id="headingTwo">
  19. <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
  20. برنامه‌نویس front-end
  21. </button>
  22. </h2>
  23. <div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
  24. <div class="accordion-body">
  25. <div class="title">
  26. مهارت‌های مورد نیاز
  27. </div>
  28. <ul class="sub-title">
  29. <li>
  30. مهارت اول
  31. </li>
  32. <li>
  33. مهارت دوم
  34. </li>
  35. <li>
  36. مهارت سوم
  37. </li>
  38. </ul>
  39. </div>
  40. </div>
  41. </div>
  42. <div class="accordion-item">
  43. <h2 class="accordion-header" id="headingThree">
  44. <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
  45. برنامه‌نویس back-end
  46. </button>
  47. </h2>
  48. <div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
  49. <div class="accordion-body">
  50. <strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </section>
  58. @endslot
  59. @slot('script')
  60. <script>
  61. </script>
  62. @endslot
  63. @endcomponent