├── .github ├── dependabot.yml └── workflows │ ├── deploy-github-pages.yml │ └── test-pull-request.yml ├── .gitignore ├── 404.html ├── CNAME ├── Communications ├── areas-of-responsibility.md ├── internal-communications.md └── social-media-policy.md ├── Finance ├── add-employee.md ├── areas-of-responsibility.md ├── expense-reimbursement.md ├── finance.md ├── glossary.md ├── paying-invoices.md ├── payroll.md ├── per-diem-policy.md ├── record-keeping.md ├── reporting-hst.md └── sending-invoices.md ├── Gemfile ├── Gemfile.lock ├── How-we-work ├── compensation-benefits.md ├── coordination.md ├── holidays.md ├── initiatives.md ├── meetings.md ├── onboarding.md ├── roles.md ├── salary.md ├── time-commitment.md └── virtual-office.md ├── Hypha-Worker-Co-operative ├── board-of-directors.md ├── bylaws.md ├── co-operative-principles.md ├── co-operative.md ├── fiscal-sponsorship.md ├── governance-management.png ├── governance-structure.md ├── look-and-feel.md ├── member-application.md ├── member-workers.md ├── press.md └── vision.md ├── Infrastructure ├── areas-of-responsibility.md ├── calendar.md ├── email.md ├── guides-infrastructure-advanced.md ├── guides-infrastructure-initial-setup.md ├── offboarding.md ├── ssh-keys.md ├── virtual-machines.md ├── voicemail.md └── vpn.md ├── LICENSE ├── Makefile ├── Operations ├── areas-of-responsibility.md ├── emergency-contacts-employees.md ├── emergency-contacts-process.md ├── emergency-contacts-what-to-expect.md ├── inactivating-membership.md ├── issue-labels.md ├── letter-of-employment.md ├── meetings.md ├── salary-adjustments.md ├── sensitive-data.md ├── shortlinks.md ├── signatures.md ├── templates.md └── timesheets.md ├── Policies ├── accessibility.md ├── coc.md ├── conflict-of-interest.md ├── conflict-of-values.md ├── conflict-transformation.md ├── data.md ├── disconnect-from-work.md ├── diversity-equity-inclusion.md ├── electronic-monitoring.md ├── health-and-safety.md ├── parental-leave.md ├── peer-feedback.md ├── pet.md ├── respect-in-workplace.md ├── salary-review.md └── working-open.md ├── Principle-5 ├── glossary.md └── reading-pool.md ├── README.md ├── SUMMARY.md ├── Strategy └── areas-of-responsibility.md ├── assets ├── STR06_For_Profit_and_Not_for_Profit_Co-ops.pdf └── images │ ├── calendar-0.png │ ├── cwcf-logo.jpg │ ├── email-mailbox-1.png │ ├── email-mailbox-2.png │ ├── email-mailbox-3.png │ ├── email-mailbox-4.png │ ├── email-mailbox-5.png │ ├── get-in-friend-were-going-to-the-homepage.gif │ ├── hypha-colours.png │ ├── hypha-wordmark.png │ ├── timesheets-0.png │ ├── timesheets-1.png │ └── under-construction.gif ├── book.json ├── handbook.md ├── package.json ├── plugins └── add-custom-js │ ├── assets │ └── add-custom-js.js │ ├── index.js │ └── package.json ├── styles └── website.css └── templates ├── checklist-offboarding.md ├── checklist-onboarding.md ├── guide.md ├── initiative-description.md ├── initiative.md └── role.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/.github/workflows/deploy-github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/test-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/.github/workflows/test-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _book 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | handbook.hypha.coop 2 | -------------------------------------------------------------------------------- /Communications/areas-of-responsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Communications/areas-of-responsibility.md -------------------------------------------------------------------------------- /Communications/internal-communications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Communications/internal-communications.md -------------------------------------------------------------------------------- /Communications/social-media-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Communications/social-media-policy.md -------------------------------------------------------------------------------- /Finance/add-employee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/add-employee.md -------------------------------------------------------------------------------- /Finance/areas-of-responsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/areas-of-responsibility.md -------------------------------------------------------------------------------- /Finance/expense-reimbursement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/expense-reimbursement.md -------------------------------------------------------------------------------- /Finance/finance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/finance.md -------------------------------------------------------------------------------- /Finance/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/glossary.md -------------------------------------------------------------------------------- /Finance/paying-invoices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/paying-invoices.md -------------------------------------------------------------------------------- /Finance/payroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/payroll.md -------------------------------------------------------------------------------- /Finance/per-diem-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/per-diem-policy.md -------------------------------------------------------------------------------- /Finance/record-keeping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/record-keeping.md -------------------------------------------------------------------------------- /Finance/reporting-hst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/reporting-hst.md -------------------------------------------------------------------------------- /Finance/sending-invoices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Finance/sending-invoices.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /How-we-work/compensation-benefits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/compensation-benefits.md -------------------------------------------------------------------------------- /How-we-work/coordination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/coordination.md -------------------------------------------------------------------------------- /How-we-work/holidays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/holidays.md -------------------------------------------------------------------------------- /How-we-work/initiatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/initiatives.md -------------------------------------------------------------------------------- /How-we-work/meetings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/meetings.md -------------------------------------------------------------------------------- /How-we-work/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/onboarding.md -------------------------------------------------------------------------------- /How-we-work/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/roles.md -------------------------------------------------------------------------------- /How-we-work/salary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/salary.md -------------------------------------------------------------------------------- /How-we-work/time-commitment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/time-commitment.md -------------------------------------------------------------------------------- /How-we-work/virtual-office.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/How-we-work/virtual-office.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/board-of-directors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/board-of-directors.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/bylaws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/bylaws.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/co-operative-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/co-operative-principles.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/co-operative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/co-operative.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/fiscal-sponsorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/fiscal-sponsorship.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/governance-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/governance-management.png -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/governance-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/governance-structure.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/look-and-feel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/look-and-feel.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/member-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/member-application.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/member-workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/member-workers.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/press.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/press.md -------------------------------------------------------------------------------- /Hypha-Worker-Co-operative/vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Hypha-Worker-Co-operative/vision.md -------------------------------------------------------------------------------- /Infrastructure/areas-of-responsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/areas-of-responsibility.md -------------------------------------------------------------------------------- /Infrastructure/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/calendar.md -------------------------------------------------------------------------------- /Infrastructure/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/email.md -------------------------------------------------------------------------------- /Infrastructure/guides-infrastructure-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/guides-infrastructure-advanced.md -------------------------------------------------------------------------------- /Infrastructure/guides-infrastructure-initial-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/guides-infrastructure-initial-setup.md -------------------------------------------------------------------------------- /Infrastructure/offboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/offboarding.md -------------------------------------------------------------------------------- /Infrastructure/ssh-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/ssh-keys.md -------------------------------------------------------------------------------- /Infrastructure/virtual-machines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/virtual-machines.md -------------------------------------------------------------------------------- /Infrastructure/voicemail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/voicemail.md -------------------------------------------------------------------------------- /Infrastructure/vpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Infrastructure/vpn.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Makefile -------------------------------------------------------------------------------- /Operations/areas-of-responsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/areas-of-responsibility.md -------------------------------------------------------------------------------- /Operations/emergency-contacts-employees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/emergency-contacts-employees.md -------------------------------------------------------------------------------- /Operations/emergency-contacts-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/emergency-contacts-process.md -------------------------------------------------------------------------------- /Operations/emergency-contacts-what-to-expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/emergency-contacts-what-to-expect.md -------------------------------------------------------------------------------- /Operations/inactivating-membership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/inactivating-membership.md -------------------------------------------------------------------------------- /Operations/issue-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/issue-labels.md -------------------------------------------------------------------------------- /Operations/letter-of-employment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/letter-of-employment.md -------------------------------------------------------------------------------- /Operations/meetings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/meetings.md -------------------------------------------------------------------------------- /Operations/salary-adjustments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/salary-adjustments.md -------------------------------------------------------------------------------- /Operations/sensitive-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/sensitive-data.md -------------------------------------------------------------------------------- /Operations/shortlinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/shortlinks.md -------------------------------------------------------------------------------- /Operations/signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/signatures.md -------------------------------------------------------------------------------- /Operations/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/templates.md -------------------------------------------------------------------------------- /Operations/timesheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Operations/timesheets.md -------------------------------------------------------------------------------- /Policies/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/accessibility.md -------------------------------------------------------------------------------- /Policies/coc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/coc.md -------------------------------------------------------------------------------- /Policies/conflict-of-interest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/conflict-of-interest.md -------------------------------------------------------------------------------- /Policies/conflict-of-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/conflict-of-values.md -------------------------------------------------------------------------------- /Policies/conflict-transformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/conflict-transformation.md -------------------------------------------------------------------------------- /Policies/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/data.md -------------------------------------------------------------------------------- /Policies/disconnect-from-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/disconnect-from-work.md -------------------------------------------------------------------------------- /Policies/diversity-equity-inclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/diversity-equity-inclusion.md -------------------------------------------------------------------------------- /Policies/electronic-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/electronic-monitoring.md -------------------------------------------------------------------------------- /Policies/health-and-safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/health-and-safety.md -------------------------------------------------------------------------------- /Policies/parental-leave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/parental-leave.md -------------------------------------------------------------------------------- /Policies/peer-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/peer-feedback.md -------------------------------------------------------------------------------- /Policies/pet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/pet.md -------------------------------------------------------------------------------- /Policies/respect-in-workplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/respect-in-workplace.md -------------------------------------------------------------------------------- /Policies/salary-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/salary-review.md -------------------------------------------------------------------------------- /Policies/working-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Policies/working-open.md -------------------------------------------------------------------------------- /Principle-5/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Principle-5/glossary.md -------------------------------------------------------------------------------- /Principle-5/reading-pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Principle-5/reading-pool.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Strategy/areas-of-responsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/Strategy/areas-of-responsibility.md -------------------------------------------------------------------------------- /assets/STR06_For_Profit_and_Not_for_Profit_Co-ops.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/STR06_For_Profit_and_Not_for_Profit_Co-ops.pdf -------------------------------------------------------------------------------- /assets/images/calendar-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/calendar-0.png -------------------------------------------------------------------------------- /assets/images/cwcf-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/cwcf-logo.jpg -------------------------------------------------------------------------------- /assets/images/email-mailbox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/email-mailbox-1.png -------------------------------------------------------------------------------- /assets/images/email-mailbox-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/email-mailbox-2.png -------------------------------------------------------------------------------- /assets/images/email-mailbox-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/email-mailbox-3.png -------------------------------------------------------------------------------- /assets/images/email-mailbox-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/email-mailbox-4.png -------------------------------------------------------------------------------- /assets/images/email-mailbox-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/email-mailbox-5.png -------------------------------------------------------------------------------- /assets/images/get-in-friend-were-going-to-the-homepage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/get-in-friend-were-going-to-the-homepage.gif -------------------------------------------------------------------------------- /assets/images/hypha-colours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/hypha-colours.png -------------------------------------------------------------------------------- /assets/images/hypha-wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/hypha-wordmark.png -------------------------------------------------------------------------------- /assets/images/timesheets-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/timesheets-0.png -------------------------------------------------------------------------------- /assets/images/timesheets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/timesheets-1.png -------------------------------------------------------------------------------- /assets/images/under-construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/assets/images/under-construction.gif -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/book.json -------------------------------------------------------------------------------- /handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/handbook.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/package.json -------------------------------------------------------------------------------- /plugins/add-custom-js/assets/add-custom-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/plugins/add-custom-js/assets/add-custom-js.js -------------------------------------------------------------------------------- /plugins/add-custom-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/plugins/add-custom-js/index.js -------------------------------------------------------------------------------- /plugins/add-custom-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/plugins/add-custom-js/package.json -------------------------------------------------------------------------------- /styles/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/styles/website.css -------------------------------------------------------------------------------- /templates/checklist-offboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/templates/checklist-offboarding.md -------------------------------------------------------------------------------- /templates/checklist-onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/templates/checklist-onboarding.md -------------------------------------------------------------------------------- /templates/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/templates/guide.md -------------------------------------------------------------------------------- /templates/initiative-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/templates/initiative-description.md -------------------------------------------------------------------------------- /templates/initiative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/templates/initiative.md -------------------------------------------------------------------------------- /templates/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyphacoop/handbook/HEAD/templates/role.md --------------------------------------------------------------------------------