ascentiaci / ascentiaci.ca

Ascentia Career Institute Main Marketing Site
1 stars 1 forks source link

Remove Langley Memorial from Sexual Misconduct Policy #105

Closed leo8aci closed 1 month ago

leo8aci commented 1 month ago
image
codeautopilot[bot] commented 1 month ago

Potential solution

The task requires removing any mention of 'Langley Memorial' from the Sexual Misconduct Policy. The specific reference to 'Langley Memorial Hospital' is located within the "Available Services" section under "Local Hospitals". By removing this reference, we ensure that the policy no longer mentions 'Langley Memorial Hospital'.

How to implement

  1. Open the file src/sexual-misconduct-policy.html.
  2. Locate the section where 'Langley Memorial Hospital' is mentioned.
  3. Remove the list item that mentions 'Langley Memorial Hospital'.

Here is the modified code snippet with 'Langley Memorial Hospital' removed:

<div class="card mt-4">
  <div class="card-header">
    <h3>Available Services</h3>
  </div>
  <div class="card-body">
    <ul>
      <li>Emergency Services: 911</li>
      <li>Suicide Prevention Hotline: 988</li>
      <li>
        Local Hospitals:
        <ul>
          <li>
            Kelowna General Hospital – 2268 Pandosy St – 250-862-4000
          </li>
        </ul>
      </li>
      <li>
        Mental Health Service:
        <a rel="noopener" href="https://here2talk.ca" target="_blank"
          >here2talk.ca</a
        >
        – 1-877-857-3397
      </li>
      <li>
        Fraser Health Sexual Assault Services:
        <a
          rel="noopener"
          href="https://fraserhealth.ca/health-topics-a-to-z/sexual-assault-and-violence/sexual-assault-and-violence-resources"
          target="_blank"
          >fraserhealth.ca/health-topics-a-to-z/sexual-assault-and-violence/sexual-assault-and-violence-resources</a
        >
      </li>
      <li>
        Interior Health Sexual Assault Service:
        <a
          rel="noopener"
          href="https://www.interiorhealth.ca/health-and-wellness/sexual-assault-forensic-examination-safe-program"
          target="_blank"
          >www.interiorhealth.ca/health-and-wellness/sexual-assault-forensic-examination-safe-program</a
        >
      </li>
    </ul>
  </div>
</div>

This change ensures that 'Langley Memorial Hospital' is no longer mentioned in the Sexual Misconduct Policy. If there are no other mentions of 'Langley Memorial' in the file, this modification completes the task.

Click here to create a Pull Request with the proposed solution

Files used for this task:

Changes on src/sexual-misconduct-policy.html To address the task of removing any mention of 'Langley Memorial' from the Sexual Misconduct Policy, you need to locate and delete the specific reference to 'Langley Memorial Hospital' in the HTML content. Here's a step-by-step plan: 1. **Locate the Mention**: Find the section where 'Langley Memorial Hospital' is mentioned. In this case, it is within the "Available Services" section under "Local Hospitals". 2. **Remove the Mention**: Delete the list item that mentions 'Langley Memorial Hospital'. Here is the modified code snippet with 'Langley Memorial Hospital' removed: ```html

Available Services

``` This change ensures that 'Langley Memorial Hospital' is no longer mentioned in the Sexual Misconduct Policy. If there are no other mentions of 'Langley Memorial' in the file, this modification completes the task.