1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @component('home.layouts.component', ['title' => 'صفحه فرصتهای شغلی'])
- @slot('style')
- @endslot
- @slot('content_top')
- @endslot
- @slot('content')
- <section class="employment-list-holder">
- <div class="container">
- <h2 class="title">
- فرصتهای شغلی
- </h2>
- <div class="title-desc">
- لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است. چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی می باشد.
- </div>
- <div>
- <div class="accordion" id="accordionExample">
- <div class="accordion-item">
- <h2 class="accordion-header" id="headingTwo">
- <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
- برنامهنویس front-end
- </button>
- </h2>
- <div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
- <div class="accordion-body">
- <div class="title">
- مهارتهای مورد نیاز
- </div>
- <ul class="sub-title">
- <li>
- مهارت اول
- </li>
- <li>
- مهارت دوم
- </li>
- <li>
- مهارت سوم
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div class="accordion-item">
- <h2 class="accordion-header" id="headingThree">
- <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
- برنامهنویس back-end
- </button>
- </h2>
- <div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
- <div class="accordion-body">
- <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.
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
-
- @endslot
- @slot('script')
- <script>
-
- </script>
- @endslot
- @endcomponent
|