Skip to content

Commit 23ebd90

Browse files
committed
Merge remote-tracking branch 'origin/main' into speakers-and-schedules
2 parents c749b43 + 9ebe46b commit 23ebd90

File tree

7 files changed

+226
-92
lines changed

7 files changed

+226
-92
lines changed

.prettierrc.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
trailingComma: "all"
2+
tabWidth: 2
3+
semi: false
4+
singleQuote: false
5+
proseWrap: "never"

_data/sponsors.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,55 @@
33
logo: civictechtoronto.webp
44
level: organizing_partner
55
description: |
6-
Civic Tech Toronto is a vibrant and diverse community of Torontonians engaged in understanding and creating solutions for civic challenges through technology, design, and other innovative means.
7-
The organizing team for Civic Spark is predominantly formed from volunteers from Civic Tech Toronto.
6+
<p>Civic Tech Toronto is a vibrant and diverse community engaged in understanding and creating solutions for civic challenges through technology, design, and other innovative means. Civic Spark has been made possible thanks to the commitment and leadership of many volunteers from the Civic Tech Toronto community.</p>
7+
<p>Since 2015, the Civic Tech Toronto community has come together at weekly meet-ups featuring a speaker as well as participant-organized breakout sessions to work on projects that use data, design, and technology to make Toronto better. Find out more and join us at an upcoming meet-up at <a href="https://civictech.ca/">civictech.ca</a></p>
88
99
- title: Centre for Analytics & Artificial Intelligence Engineering (CARTE)
1010
url: https://carte.utoronto.ca
1111
logo: carte.png
1212
level: organizing_partner
13-
description: coming soon.
13+
description: |
14+
<p>The Centre for Analytics & Artificial Intelligence Engineering (CARTE) is a hub for collaborations and partnerships in analytics and artificial intelligence at The University of Toronto's Faculty of Applied Science and Engineering. Their mission is to conduct state-of-the-art research while nurturing the next generation of engineering talent.</p>
15+
<p>CARTE facilitates applied research in Artificial Intelligence (AI) with external partners, over 100 affiliated faculty members and students and also offers customizable AI and machine learning training to industry and academic partners.</p>
16+
1417
1518
- title: 1RG
1619
url: https://1rg.space
1720
logo: 1rg.svg
1821
level: organizing_partner
19-
description: coming soon.
22+
description: |
23+
<p>1RG believes that the development of technology can and should be stewarded to support human agency, democracy, building richer and more vibrant communities, and the flourishing of all life.</p>
24+
<p><a href="https://labs.1rg.space/">1RG Labs</a> develops good software for resilient futures. They provide expertise in engineering, data science, product development and security.</p>
25+
<p><a href="https://1rg.space/">1RG Space</a> is an inclusive co-working and event space located in Toronto’s The Junction neighbourhood, built on a foundation of community. At 1RG Space, members can find a supportive environment to actively collaborate, grow, and learn together.</p>
26+
2027
2128
- title: Open Data – The City of Toronto
2229
url: https://open.toronto.ca
2330
logo: Toronto Lockup Transparent.png
2431
level: presenting_sponsor
25-
description: coming soon.
32+
description: |
33+
<p>Since 2009, the City of Toronto Open Data team has published accessible, high-quality datasets that support transparency, innovation, and public engagement through the City’s Open Data portal. This service of the City’s Technology Services division helps residents, businesses, and researchers use city data to inform decisions, build tools, and generate insights.</p>
34+
<p>In addition to publicly sharing data from a variety of City divisions and agencies, the Open Data team also showcases citizens and companies that have used open data on their <a href="https://open.toronto.ca/gallery/">project gallery</a> and recognizes open data leaders in the City through their annual Open Data Awards.</p>
35+
2636
2737
- title: The Toronto Star
2838
url: https://www.thestar.com
2939
logo: Toronto-Star-Logo.svg
3040
level: presenting_sponsor
31-
description: coming soon.
41+
description: |
42+
<p>The Toronto Star is Canada’s largest local daily newspaper, reaching more than 7.7 million readers across its print and digital platforms. With a legacy as the “paper for the people” and founding principles that guide its newsroom to this day, the Star continues to uphold the highest standards of journalistic integrity and social responsibility.</p>
43+
<p>Toronto Star’s award-winning journalism often focuses public attention on injustices and the reforms designed to correct them. The Star is proud to be the news organization people turn to when they want a sense of community — where they are seen and heard — and when they want to see the scales balanced, wrongs righted and the powerful held to account.</p>
3244
3345
- title: Bloom Works
3446
url: https://bloomworks.digital
3547
logo: bloom.svg
3648
level: major_sponsor
37-
description: coming soon.
49+
description: |
50+
Bloom Works is a woman-owned public benefit company that helps government and other organizations serve people better with digital services and human-centred design.
3851
3952
- title: Code for Canada
4053
url: https://codefor.ca
4154
logo: code-for-canada-logo.png
4255
level: supporting_sponsor
43-
description: coming soon.
56+
description: |
57+
Code for Canada is a national non-profit that partners with governments and non-profits to help them independently deliver digital services that work for everyone. Through their work with over 50 government and non-profit partners to-date, their team uses digital skills for good, building capacity and creating better services.

_pages/about.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: page
33
title: About Us
44
permalink: /about-us/
5+
redirect_from: /about-us
56
---
67

78
<section>
@@ -49,10 +50,13 @@ For us Civic Spark is a space to:
4950
<div class="partner-lists">
5051
{% for sponsor in site.data.sponsors %}
5152
{% if sponsor.level == "organizing_partner" %}
52-
<a href="{{ sponsor.url }}" target="_blank" rel="noopener noreferrer" title="{{ sponsor.title }}">
53-
<img src="{{ site.baseurl }}/assets/images/sponsors/{{ sponsor.logo }}" alt="{{ sponsor.title }}" class="partner-logo">
54-
</a>
55-
{{ sponsor.description }}
53+
<div class="organizing-partner">
54+
<h4>{{ sponsor.title }}</h4>
55+
<a href="{{ sponsor.url }}" target="_blank" rel="noopener noreferrer" title="{{ sponsor.title }}">
56+
<img src="{{ site.baseurl }}/assets/images/sponsors/{{ sponsor.logo }}" alt="{{ sponsor.title }}" class="partner-logo">
57+
</a>
58+
{{ sponsor.description }}
59+
</div>
5660
{% endif %}
5761
{% endfor %}
5862
</div>

_pages/conference/speakers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ layout: page
33
title: Conference | Speakers
44
description: Saturday, August 16, 2025 – Talks, sessions, and shared lessons from the field.
55
permalink: /conference/speakers/
6+
redirect_from: /conference/speakers
67
---
78

89
{% include conference-subnav.html%}

_pages/get-involved.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: page
33
title: Get Involved
4-
permalink: /get-involved
4+
permalink: /get-involved/
5+
redirect_from: /get-involved
56
---
67

78
<section id="get-involved">

_pages/index.html

Lines changed: 143 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,37 @@
33
permalink: /
44
redirect_from: /event-overview/
55
---
6+
67
<!--
78
*
89
* § Hero
910
*
1011
-->
1112
<section class="hero">
1213
<article class="yellow-card-bg grid grid-blade">
13-
<div class="image-area">
14-
{% include svg-initial.svg %}
15-
</div>
14+
<div class="image-area">{% include svg-initial.svg %}</div>
1615
<div class="text-area">
1716
<h1>{% include logoform.html gray='true' %}</h1>
18-
<p class="lead">​Share&nbsp;your&nbsp;story. Spark&nbsp;connection. Shape&nbsp;what’s&nbsp;next.</p>
19-
<p>A two-day gathering for organizers, innovators, and community builders working toward a more equitable future of public life.</p>
17+
<p class="lead">
18+
​Share&nbsp;your&nbsp;story. Spark&nbsp;connection.
19+
Shape&nbsp;what’s&nbsp;next.
20+
</p>
21+
<p>
22+
A two-day gathering for organizers, innovators, and community builders
23+
working toward a more equitable future of public life.
24+
</p>
2025
<p><small>August 16 – 17, 2025 in Toronto</small></p>
2126
<div class="cta-buttons">
22-
<a role="button" class="contrast large" href="{{ site.data.links.registration }}" target="_blank">Register{% include ext-arrow.html %}</a>
23-
<a role="button" class="contrast outline large" href="#event-overview" >Learn More</a>
27+
<a
28+
role="button"
29+
class="contrast large"
30+
href="{{ site.data.links.registration }}"
31+
target="_blank"
32+
>Register{% include ext-arrow.html %}</a
33+
>
34+
<a role="button" class="contrast outline large" href="#event-overview"
35+
>Learn More</a
36+
>
2437
</div>
2538
</div>
2639
</article>
@@ -33,36 +46,62 @@ <h1>{% include logoform.html gray='true' %}</h1>
3346
<section id="event-overview">
3447
<div class="inset-section">
3548
<h2>Event Overview</h2>
36-
<p class="lead">Civic Spark is a gathering for people who care about the future of public life.</p>
37-
<p>We're bringing together organizers, technologists, public servants, mutual aid networks, researchers, designers, and community leaders from across North America.</p>
38-
<p>This isn’t a pitch stage or a showcase. It’s a space to share real stories, challenge assumptions, and explore what works — and what doesn’t — when building for civic impact.</p>
39-
<p>Whether you’re deep in the work or just getting started, you’re invited.</p>
49+
<p class="lead">
50+
Civic Spark is a gathering for people who care about the future of public
51+
life.
52+
</p>
53+
<p>
54+
We're bringing together organizers, technologists, public servants, mutual
55+
aid networks, researchers, designers, and community leaders from across
56+
North America.
57+
</p>
58+
<p>
59+
This isn’t a pitch stage or a showcase. It’s a space to share real
60+
stories, challenge assumptions, and explore what works — and what doesn’t
61+
— when building for civic impact.
62+
</p>
63+
<p>
64+
Whether you’re deep in the work or just getting started, you’re invited.
65+
</p>
4066
<div class="cta-buttons">
41-
<a role="button" class="contrast outline large" href="#why-now">Read More</a>
67+
<a role="button" class="contrast outline large" href="#why-now"
68+
>Read More</a
69+
>
4270
</div>
4371
</div>
44-
72+
4573
<!--
4674
*
4775
* § Overview: Why Now
4876
*
4977
-->
5078
<section id="why-now">
5179
<article class="magenta-card-bg grid grid-blade">
52-
<div class="image-area">
53-
{% include svg-respite.svg %}
54-
</div>
80+
<div class="image-area">{% include svg-respite.svg %}</div>
5581
<div class="text-area">
5682
<h3>Why Now</h3>
57-
<p>Today's challenges are big, and the work can feel fragmented, exhausting, and unclear. <strong>Civic Spark is a chance to reconnect</strong> — with purpose, with people, and with the possibilities of what we can build together.</p>
83+
<p>
84+
Today's challenges are big, and the work can feel fragmented,
85+
exhausting, and unclear.
86+
<strong>Civic Spark is a chance to reconnect</strong> — with purpose,
87+
with people, and with the possibilities of what we can build together.
88+
</p>
5889
<ul>
5990
<li>Let’s share what’s working — and name what’s not.</li>
6091
<li>Let’s build across disciplines, roles, and lived experience.</li>
6192
<li>Let’s co-create what’s next.</li>
6293
</ul>
63-
<p>We believe civic infrastructure can be resilient, public trust can be restored, and those most impacted can lead the way forward.</p>
94+
<p>
95+
We believe civic infrastructure can be resilient, public trust can be
96+
restored, and those most impacted can lead the way forward.
97+
</p>
6498
<div class="cta-buttons">
65-
<a role="button" class="contrast outline large" href="#who-should-attend">Who is invited?</a>
99+
<a
100+
role="button"
101+
class="contrast outline large"
102+
href="#who-should-attend"
103+
>Who is invited?</a
104+
>
66105
</div>
67106
</div>
68107
</article>
@@ -74,26 +113,61 @@ <h3>Why Now</h3>
74113
-->
75114
<section id="who-should-attend">
76115
<article class="grid grid-blade reversed">
77-
<div class="image-area">
78-
{% include svg-bicycling.svg %}
79-
</div>
116+
<div class="image-area">{% include svg-bicycling.svg %}</div>
80117
<div class="text-area">
81118
<h3 class="colorized-orange">Who Should Attend</h3>
82119
<p class="lead colorized-orange">
83-
If you're building something better — whether that’s a community, a project, a policy, or a platform — Civic Spark is for you.
120+
If you're building something better — whether that’s a community, a
121+
project, a policy, or a platform — Civic Spark is for you.
84122
</p>
85123
<p>Maybe you are (or want to be) a:</p>
86124
<ul>
87-
<li><strong class="colorized-orange">public servant</strong> working collaboratively with communities.</li>
88-
<li><strong class="colorized-orange">grassroots organizer</strong> exploring tech or data as a tool for justice.</li>
89-
<li><strong class="colorized-orange">mutual aid volunteer</strong> making things work with what you’ve got.</li>
90-
<li><strong class="colorized-orange">designer</strong>, <strong class="colorized-orange">technologist</strong>, or <strong class="colorized-orange">researcher</strong> committed to public interest work.</li>
91-
<li><strong class="colorized-orange">student</strong> or <strong class="colorized-orange">newcomer</strong> looking to learn, connect, and contribute.</li>
125+
<li>
126+
<strong class="colorized-orange">public servant</strong> working
127+
collaboratively with communities.
128+
</li>
129+
<li>
130+
<strong class="colorized-orange">grassroots organizer</strong>
131+
exploring tech or data as a tool for justice.
132+
</li>
133+
<li>
134+
<strong class="colorized-orange">mutual aid volunteer</strong>
135+
making things work with what you’ve got.
136+
</li>
137+
<li>
138+
<strong class="colorized-orange">designer</strong>,
139+
<strong class="colorized-orange">technologist</strong>, or
140+
<strong class="colorized-orange">researcher</strong> committed to
141+
public interest work.
142+
</li>
143+
<li>
144+
<strong class="colorized-orange">student</strong> or
145+
<strong class="colorized-orange">newcomer</strong> looking to learn,
146+
connect, and contribute.
147+
</li>
92148
</ul>
93-
<p>Or someone who's <strong class="colorized-orange">just figuring out where you fit</strong> — but knows things need to change — whether formally or informally, institutionally or on the ground — you are invited.</p>
149+
<p>
150+
Or someone who's
151+
<strong class="colorized-orange"
152+
>just figuring out where you fit</strong
153+
>
154+
— but knows things need to change — whether formally or informally,
155+
institutionally or on the ground — you are invited.
156+
</p>
94157
<div class="cta-buttons">
95-
<a role="button" class="secondary large" href="{{ site.data.links.registration }}" target="_blank">Register{% include ext-arrow.html %}</a>
96-
<a role="button" class="secondary outline large" href="#what-to-expect">What can I expect?</a>
158+
<a
159+
role="button"
160+
class="secondary large"
161+
href="{{ site.data.links.registration }}"
162+
target="_blank"
163+
>Register{% include ext-arrow.html %}</a
164+
>
165+
<a
166+
role="button"
167+
class="secondary outline large"
168+
href="#what-to-expect"
169+
>What can I expect?</a
170+
>
97171
</div>
98172
</div>
99173
</article>
@@ -105,7 +179,7 @@ <h3 class="colorized-orange">Who Should Attend</h3>
105179
*
106180
-->
107181
<section id="what-to-expect">
108-
<H2>What to Expect</H2>
182+
<h2>What to Expect</h2>
109183
<div class="grid grid-blade">
110184
<article>
111185
<div class="image-area colorized-magenta">
@@ -115,9 +189,21 @@ <H2>What to Expect</H2>
115189
<h3 class="colorized-magenta">The Conference</h3>
116190
<p class="colorized-magenta">​​Saturday, Aug 16</p>
117191
</hgroup>
118-
<p>A set schedule of <strong class="colorized-magenta">stories, sessions,</strong> and <strong class="colorized-magenta">shared lessons</strong> from people building community-powered tools, services, and networks. It’s a space to share what’s working, reflect on hard-won lessons, and explore new ideas together.</p>
192+
<p>
193+
A set schedule of
194+
<strong class="colorized-magenta">stories, sessions,</strong> and
195+
<strong class="colorized-magenta">shared lessons</strong> from people
196+
building community-powered tools, services, and networks. It’s a space
197+
to share what’s working, reflect on hard-won lessons, and explore new
198+
ideas together.
199+
</p>
119200
<div class="cta-buttons">
120-
<a role="button" class="outline" href="{{ '/conference' | relative_url }}">See the schedule</a>
201+
<a
202+
role="button"
203+
class="outline"
204+
href="{{ '/conference' | relative_url }}"
205+
>See the schedule</a
206+
>
121207
</div>
122208
</article>
123209
<article>
@@ -128,9 +214,21 @@ <h3 class="colorized-magenta">The Conference</h3>
128214
<h3 class="colorized-orange">The Unconference</h3>
129215
<p class="colorized-orange">​Sunday, August 17</p>
130216
</hgroup>
131-
<p>A day of <strong class="colorized-orange">workshops</strong> and <strong class="colorized-orange">sessions created by participants</strong>. Anyone can propose a session. Anyone can host. This is where we dive deeper, get hands-on, explore tough questions, and connect around shared interests.</p>
217+
<p>
218+
A day of <strong class="colorized-orange">workshops</strong> and
219+
<strong class="colorized-orange"
220+
>sessions created by participants</strong
221+
>. Anyone can propose a session. Anyone can host. This is where we dive
222+
deeper, get hands-on, explore tough questions, and connect around shared
223+
interests.
224+
</p>
132225
<div class="cta-buttons">
133-
<a role="button" class="secondary outline" href="{{ '/unconference' | relative_url }}">Read about the unconference</a>
226+
<a
227+
role="button"
228+
class="secondary outline"
229+
href="{{ '/unconference' | relative_url }}"
230+
>Read about the unconference</a
231+
>
134232
</div>
135233
</article>
136234
</div>
@@ -140,10 +238,16 @@ <h3 class="colorized-orange">The Unconference</h3>
140238
<div class="inset-section">
141239
<h2>Supporters</h2>
142240
<p>
143-
Civic Spark is made possible by the generous support of our sponsors and partners. Their commitment to civic innovation and community building helps us create a space for meaningful connection and collaboration.
241+
Civic Spark is made possible by the generous support of our sponsors and
242+
partners. Their commitment to civic innovation and community building
243+
helps us create a space for meaningful connection and collaboration.
144244
</p>
145245
<p>
146-
This event is organized by <a href="{{ site.data.links.civictechtoronto }}" target="_blank">Civic Tech Toronto</a> and <a href="{{ site.data.links.one-rg }}" target="_blank">1RG</a>, with support from <a href="{{ site.data.links.carte }}" target="_blank">CARTE</a>.
246+
This event is organized by
247+
<a href="{{ site.data.links.civictechtoronto }}" target="_blank"
248+
>Civic Tech Toronto</a
249+
>, <a href="{{ site.data.links.carte }}" target="_blank">CARTE</a>, and
250+
<a href="{{ site.data.links.one-rg }}" target="_blank">1RG</a>.
147251
</p>
148252
</div>
149-
</section>
253+
</section>

0 commit comments

Comments
 (0)