diff --git a/src/_data/navigation.yaml b/src/_data/navigation.yaml index 6eef000..75a9971 100644 --- a/src/_data/navigation.yaml +++ b/src/_data/navigation.yaml @@ -14,3 +14,5 @@ items: url: /sponsors/ - text: Join url: /join/ + - text: Contact + url: /contact/ diff --git a/src/_includes/layouts/page.njk b/src/_includes/layouts/page.njk index 7bbc0aa..14c583f 100644 --- a/src/_includes/layouts/page.njk +++ b/src/_includes/layouts/page.njk @@ -10,8 +10,35 @@ layout: base.njk {% endif %}

{{ title }}

+ + {% set calloutToken = "[[CALLOUT]]" %} + {% if callout %} + {% set hasCta = callout.ctaText and callout.ctaUrl %} + {% set calloutTextClass = "mb-0" %} + {% if hasCta %} + {% set calloutTextClass = "mb-4" %} + {% endif %} + {% set calloutHtml %} +
+

{{ callout.text }}

+ {% if hasCta %} + + {{ callout.ctaText }} + + {% endif %} +
+ {% endset %} + {% set hasCalloutToken = (content | replace(calloutToken, "")) != content %} + {% if not hasCalloutToken %} + {{ calloutHtml | safe }} + {% endif %} + {% endif %}
- {{ content | safe }} + {% if callout %} + {{ content | replace(calloutToken, calloutHtml) | safe }} + {% else %} + {{ content | safe }} + {% endif %}
- \ No newline at end of file + diff --git a/src/_includes/layouts/sponsors.njk b/src/_includes/layouts/sponsors.njk index 014d90f..6e7e3ff 100644 --- a/src/_includes/layouts/sponsors.njk +++ b/src/_includes/layouts/sponsors.njk @@ -4,9 +4,30 @@ layout: base.njk

Our Sponsors

+ + {% set calloutToken = "[[CALLOUT]]" %} + {% if callout %} + {% set calloutHtml %} +
+

{{ callout.title }}

+

{{ callout.text }}

+ + {{ callout.ctaText }} + +
+ {% endset %} + {% set hasCalloutToken = (content | replace(calloutToken, "")) != content %} + {% if not hasCalloutToken %} + {{ calloutHtml | safe }} + {% endif %} + {% endif %}
- {{ content | safe }} + {% if callout %} + {{ content | replace(calloutToken, calloutHtml) | safe }} + {% else %} + {{ content | safe }} + {% endif %}
{% set platinumSponsors = [] %} @@ -133,12 +154,5 @@ layout: base.njk
{% endif %} - -
-

New Sponsors

-

We're on the lookout for more fantastic sponsors to get on board and help us continue to fulfill our mission of further creating young engineers. We have a variety of options for sponsorship and are after more assistance. Contributions big or small, or the funding of specific activities are always welcome and appreciated. We can include your logos in media and marketing packages as well as on the robot, and bring student-run presentations to your business or community event with functional robots for demonstrations. Get in touch now to help sponsor our robotics non-profit!

- - Contact Us - -
+ diff --git a/src/_pages/contact.md b/src/_pages/contact.md new file mode 100644 index 0000000..c6df5fb --- /dev/null +++ b/src/_pages/contact.md @@ -0,0 +1,16 @@ +--- +title: Contact Us +description: How to get in touch with The Drop Bears (FRC Team 4774) +layout: layouts/page.njk +permalink: /contact/ +--- + +If you'd like to get in touch, we would love to hear from you. + +- **General enquiries:** [enquiries@thedropbears.org.au](mailto:enquiries@thedropbears.org.au) + +You can also find us on: + +- [YouTube](https://www.youtube.com/@thedropbears) +- [Instagram](https://www.instagram.com/frc_thedropbears) +- [GitHub](https://www.github.com/thedropbears) diff --git a/src/_pages/for-sponsors.md b/src/_pages/for-sponsors.md new file mode 100644 index 0000000..76ed805 --- /dev/null +++ b/src/_pages/for-sponsors.md @@ -0,0 +1,52 @@ +--- +title: For Sponsors +description: Sponsorship overview for supporting The Drop Bears +layout: layouts/page.njk +permalink: /for-sponsors/ +callout: + text: "We're on the lookout for more fantastic sponsors to get on board and help us continue to fulfill our mission of further creating young engineers. We have a variety of options for sponsorship and are after more assistance. Contributions big or small, or the funding of specific activities are always welcome and appreciated. We can include your logos in media and marketing packages as well as on the robot, and bring student-run presentations to your business or community event with functional robots for demonstrations. Get in touch now to help sponsor our robotics non-profit!" + ctaText: Contact us + ctaUrl: /contact/ +--- + +[[CALLOUT]] + +## Who are The Drop Bears? + +We are high school students building technical and teamwork skills, supported by volunteer mentors with industry experience. We have competed locally and internationally for 13 years and are hosted by the Australian Centre for Field Robotics at the University of Sydney. + +--- + +## Our students + +- Aged 14-18 +- Design, prototype, and build a competitive robot +- Learn software, mechanical, and engineering skills from mentors and each other +- Develop collaboration, problem-solving, and communication capabilities +- Create an inclusive team environment to boost students' confidence + +--- + +## The competition + +FIRST Robotics Competition is an international, nonprofit-led initiative that promotes STEM education through an annual design, build, and compete challenge. Each January a new challenge is issued, and teams have 8 weeks to build their robot. We compete in local events where we form alliances with other teams to play the game. + +See us in action: [https://youtu.be/VUXFyxdBxkE](https://youtu.be/VUXFyxdBxkE) + +--- + +## Our support network + +- Mentors volunteer their time to share their skills with the students +- Parents support students to attend workshop sessions and competitions +- Sponsors fund our competition registration fees and new tools and materials + +--- + +## What's in it for you? + +- Support local students to build their STEM technical and interpersonal skills +- Promote your business to local families and schools +- Demonstrate community engagement to your employees and customers +- Logo recognition on our robot, website, and social media channels +- Content for your own social channels or staff engagement messaging diff --git a/src/_pages/sponsors.md b/src/_pages/sponsors.md index 0195e63..096cbcb 100644 --- a/src/_pages/sponsors.md +++ b/src/_pages/sponsors.md @@ -4,6 +4,13 @@ description: Meet the organizations that make our work possible layout: layouts/sponsors.njk permalink: /sponsors/ templateEngineOverride: njk +callout: + title: For Sponsors + text: Interested in supporting The Drop Bears? Read our sponsorship overview and how your support helps students build STEM skills. + ctaText: Read the sponsorship overview + ctaUrl: /for-sponsors/ --- The Drop Bears thank all our sponsors for their generous support. In addition to the team members’ financial contributions, our team relies significantly on sponsorships to help fund our operations, including robot parts, competition fees, and outreach activities. + +[[CALLOUT]] \ No newline at end of file