|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +--- |
| 4 | + |
| 5 | +{% assign event_id = page.event_id %} |
| 6 | +{% assign event = site.data[event_id] %} |
| 7 | +{% assign event_name = event.details.event_name %} |
| 8 | +{% assign event_year = event.details.event_year %} |
| 9 | +{% assign event_page = event.details.event_page %} |
| 10 | +{% assign form_link = event.details.scholarship.form %} |
| 11 | +{% capture email_link %}mailto:{{ event.details.scholarship.email | encode_email }}{% endcapture %} |
| 12 | +{% assign count = event.details.scholarship.count %} |
| 13 | +{% assign deadline = event.details.scholarship.deadline %} |
| 14 | +{% assign notification_date = event.details.scholarship.notification_date %} |
| 15 | + |
| 16 | +<article> |
| 17 | + <h1 class="display-5">{{ page.title }}</h1> |
| 18 | + |
| 19 | + <p class="lead"> |
| 20 | + The Denver Suspension Collective is committed to keeping education accessible and available and we understand |
| 21 | + that events can be cost prohibitive for many practitioners. |
| 22 | + The DSC has {{ count }} full scholarships available for the <a href="{% link {{ event_page }} %}">{{ event_year }} {{ event_name }}</a>. |
| 23 | + Scholarships include a full event pass for the event, an event t-shirt, and one suspension. |
| 24 | + Scholarships do not include lodging or accommodations. |
| 25 | + </p> |
| 26 | + |
| 27 | + <div class="alert alert-info my-4 fw-medium" role="alert"> |
| 28 | + <b><i class="bi bi-info-circle-fill"></i></b> |
| 29 | + Applications must be completed and submitted by {{ deadline | date: "%B %-d" }}. |
| 30 | + Recipients will be contacted via email by {{ notification_date | date: "%B %-d" }}. |
| 31 | + Submitting an application does not guarantee a scholarship. |
| 32 | + Please wait until you’ve been notified to book accommodations. |
| 33 | + <br><br> |
| 34 | + For any questions, please email: <a href="{{ email_link }}" class="alert-link">DenverSusconScholarship [at] gmail [dot] com</a> |
| 35 | + </div> |
| 36 | + |
| 37 | + {% include heading_block.html title="Eligibility for Application" icon="bi-list-stars" %} |
| 38 | + |
| 39 | + <p> |
| 40 | + <b>Community Involvement:</b> Applicants must be active members of the suspension community |
| 41 | + or aspiring practitioners and plan to attend the {{ event_name }} with the intention of gaining practitioner experience. |
| 42 | + </p> |
| 43 | + |
| 44 | + <p> |
| 45 | + <b>Financial Need:</b> This scholarship is intended for practitioners who cannot |
| 46 | + attend the event without financial assistance. You will not be asked to prove or explain your decision for applying, |
| 47 | + we trust you to understand your own needs when deciding if a scholarship is right for you. |
| 48 | + </p> |
| 49 | + |
| 50 | + <p> |
| 51 | + <b>Commitment to Skill Development:</b> Applicants must be interested in improving skills as a practitioner, |
| 52 | + and display an openness to learning and feedback. The {{ event_name }} is an education focused event, |
| 53 | + attendees must be committed to participating in classes and hands-on learning opportunities. |
| 54 | + </p> |
| 55 | + |
| 56 | + <p> |
| 57 | + <b>Code of Conduct and Professionalism:</b> Applicants must be willing to abide by |
| 58 | + The DSC <a href="{% link resources/general/code-of-conduct.md %}">Code of Conduct</a>. |
| 59 | + The DSC reserves the right to revoke the scholarship or remove the attendee for any behavior that violates the CoC. |
| 60 | + </p> |
| 61 | + |
| 62 | + <p> |
| 63 | + <b>Ability to Volunteer as Needed:</b> Applicants may be asked to volunteer during the {{ event_name }} as needed. |
| 64 | + Volunteer duties may include: load-in, load-out, and registration. Learning opportunities and suspensions will take priority. |
| 65 | + </p> |
| 66 | + |
| 67 | + <p> |
| 68 | + <b>Cost of Travel and Lodging:</b> The DSC Scholarship does not provide accommodations |
| 69 | + such as lodging or travel cost. |
| 70 | + Applicants must be able to provide their own necessary accommodations. |
| 71 | + </p> |
| 72 | + |
| 73 | + {% include heading_block.html title="Application Requirements" icon="bi-award" %} |
| 74 | + |
| 75 | + <p> |
| 76 | + All requested information on the scholarship application must be completed honestly and thoroughly. |
| 77 | + Incomplete or inaccurate applications will not be considered. |
| 78 | + Applicants will not be required to prove financial need but will be required to complete a short application |
| 79 | + and a 5-8 sentence essay describing how they would benefit from attending the {{ event_name }}. |
| 80 | + </p> |
| 81 | + |
| 82 | + {% if form_link == null %} |
| 83 | + {% assign is_closed = true %} |
| 84 | + {% assign btn_text = "Applications Closed" %} |
| 85 | + {% assign disabled = "disabled" %} |
| 86 | + {% else %} |
| 87 | + {% assign is_closed = false %} |
| 88 | + {% assign btn_text = "Apply Now" %} |
| 89 | + {% assign disabled = "" %} |
| 90 | + {% endif %} |
| 91 | + |
| 92 | + <div class="d-grid gap-2 col-8 mx-auto my-2"> |
| 93 | + <a {% if is_closed == false %} href="{{ form_link }}" {% endif %} |
| 94 | + class="btn btn-primary btn-lg {{ disabled }}" |
| 95 | + role="button" |
| 96 | + aria-disabled="{{ is_closed }}" |
| 97 | + target="_blank" |
| 98 | + > |
| 99 | + {{ btn_text }} |
| 100 | + </a> |
| 101 | + </div> |
| 102 | +</article> |
0 commit comments