starting search

This commit is contained in:
prospect
2024-01-17 07:05:07 -05:00
parent 0bf417dcab
commit e28c22fe22
49 changed files with 224 additions and 848 deletions

View File

@@ -97,7 +97,8 @@ $educationLevelDifferences = [
'Students must provide assessments if necessary. If the student wants to get an assessment, they need to self-advocate by going to the student support center.',
'Students create a Post-Secondary Learning Plan with the Student Support Centre.',
]
], [
],
[
'title' => 'Assignments, Tests and Grades',
'high-school-info' => [
'Different kinds of assignments are given. Late assignments are usually accepted.',
@@ -127,77 +128,66 @@ $educationLevelDifferences = [
<p class="font-bold text-white">DIFFERENCES BETWEEN HIGH SCHOOL AND POST-SECONDARY</p>
</div>
<!-- Differences Section -->
<nav class="flex flex-1 flex-col">
<div class="flex flex-1 flex-col gap-y-7">
<div class="flex flex-1 flex-col gap-y-7">
<div>
<div>
<ul role="list" class="text-blue-900">
<ul role="list" class="text-blue-900">
<!-- Differences Loop -->
<?php
<?php foreach ($educationLevelDifferences as $difference) { ?>
foreach ($educationLevelDifferences as $difference) {
<li class="accordion differences-columns">
?>
<div class="flex px-2 rounded-md justify-between">
<li class="accordion differences-columns">
<div class="flex px-2 rounded-md justify-between">
<a href="" class="gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex items-center align-middle">
<p><?php echo $difference['title'] ?></p>
</a>
<a href="" class="gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex items-center align-middle">
<p><?php echo $difference['title'] ?></p>
</a>
<button class="accordion-toggle">
<i class="fas fa-chevron-down items-center ml-auto rounded-m px-2.5 py-2 " aria-hidden="true"></i>
<i class="fas fa-times items-center ml-auto rounded-md px-3 py-2" aria-hidden="true"></i>
</button>
<button class="accordion-toggle">
<i class="fas fa-chevron-down items-center ml-auto rounded-m px-2.5 py-2 " aria-hidden="true"></i>
<i class="fas fa-times items-center ml-auto rounded-md px-3 py-2" aria-hidden="true"></i>
</button>
</div>
<div class="accordion-content space-y-4">
<!-- High School Information -->
<div>
<h3 class="font-medium underline mb-2">High School</h3>
<ul class="list-disc list-inside">
<?php
foreach ($difference['high-school-info'] as $info) { ?>
<li class="mb-2">
<?php echo $info ?>
</li>
<?php } ?>
</ul>
</div>
<div class="accordion-content space-y-4">
<!-- High School Information -->
<div>
<h3 class="font-medium underline mb-2">High School</h3>
<ul class="list-disc list-inside">
<?php
foreach ($difference['high-school-info'] as $info) { ?>
<li class="mb-2">
<?php echo $info ?>
</li>
<?php } ?>
</ul>
</div>
<!-- College University Information -->
<div>
<h3 class="font-medium underline mb-2">College/University</h3>
<ul class="list-disc list-inside">
<?php
foreach ($difference['college-university-info'] as $info) { ?>
<li class="mb-2">
<?php echo $info ?>
</li>
<?php } ?>
</ul>
</div>
<!-- College University Information -->
<div>
<h3 class="font-medium underline mb-2">College/University</h3>
<ul class="list-disc list-inside">
<?php
foreach ($difference['college-university-info'] as $info) { ?>
<li class="mb-2">
<?php echo $info ?>
</li>
<?php } ?>
</ul>
</div>
</li>
</div>
<?php } ?>
</li>
</ul>
</div>
<?php } ?>
</ul>
</div>
</nav>
</div>
</div>