Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a7eeeda
Add feedback survey design doc
alexwolson Feb 24, 2026
f31739c
Add feedback survey implementation plan
alexwolson Feb 24, 2026
26c1a6c
Configure feedback form token injection for build
alexwolson Feb 24, 2026
68fc4ed
Fix missing trailing newline in .gitignore and quote token in CI inje…
alexwolson Feb 24, 2026
636672d
Add feedback page with form structure and all questions
alexwolson Feb 24, 2026
9ee7628
Fix rating fieldset semantics, option whitespace, and alert roles
alexwolson Feb 24, 2026
b3f91a5
Add inline rating row style for feedback form
alexwolson Feb 24, 2026
cfa6fc6
Add conditional question visibility and submit-enable JS
alexwolson Feb 24, 2026
989770d
Add GitHub API submission to feedback form
alexwolson Feb 24, 2026
b2a08fa
Fix timestamp consistency and add parseInt radix in feedback form JS
alexwolson Feb 24, 2026
3c0bfee
Add aria-labelledby to conditional sections and update CSS header date
alexwolson Feb 24, 2026
e9eff25
Redesign feedback form with civic editorial aesthetic
alexwolson Feb 24, 2026
c4166e5
Replace meetup dropdown with Tuesday-only date picker
alexwolson Feb 24, 2026
8e96505
Use Pico CSS variables for feedback form colours and remove custom fonts
alexwolson Feb 24, 2026
747c8cd
Add follow-up questions for maybe/no responses on would_return
alexwolson Feb 24, 2026
c0e2708
Tone down would_return follow-up question labels
alexwolson Feb 24, 2026
8b5612e
Unify form label typography for consistency
alexwolson Feb 24, 2026
863dd90
Make public storage of responses explicit and prominent
alexwolson Feb 24, 2026
af76c22
Replace 5-point ratings with labelled 3-point scale, remove optional …
alexwolson Feb 25, 2026
9f3c9fb
Fix YAML syntax error in feedback token injection step
alexwolson Feb 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ jobs:
# chmod +x _scripts/thumbnail_sizes.sh
# ./_scripts/thumbnail_sizes.sh

- name: Inject feedback token
run: |
echo "feedback_token: \"$FEEDBACK_TOKEN\"" >> _config.yml
env:
FEEDBACK_TOKEN: ${{ secrets.FEEDBACK_TOKEN }}

# Outputs to the './_site' directory by default
- name: Build Jekyll site
run: |
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ _site

# Ruby vendor directory
vendor/bundle
.bundle
.bundle

# Local config override (contains secrets)
_config.local.yml
14 changes: 11 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,21 @@ all: serve
install:
bundle install

# Start Jekyll server
# Start Jekyll server (uses _config.local.yml if present)
serve:
$(JEKYLL) serve
@if [ -f _config.local.yml ]; then \
$(JEKYLL) serve --config _config.yml,_config.local.yml; \
else \
$(JEKYLL) serve; \
fi

# Start Jekyll server with incremental regeneration
serve-incremental:
$(JEKYLL) serve --incremental
@if [ -f _config.local.yml ]; then \
$(JEKYLL) serve --incremental --config _config.yml,_config.local.yml; \
else \
$(JEKYLL) serve --incremental; \
fi

# Generate category and tag data
generate-data:
Expand Down
6 changes: 4 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ author:
email: hi@civictech.ca

description: >-
Civic Tech Toronto is a vibrant and diverse community of Torontonians engaged
in understanding and creating solutions for civic challenges through technology,
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.

feedback_token: ""

baseurl: ""
github_username: civictechto

Expand Down
Loading
Loading