├── .gitignore ├── CODE_OF_CONDUCT.txt ├── GLOSSARY.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── book.json ├── images ├── README.md ├── contribution-edit-link.png └── druplicon-small.png ├── manuscript ├── README.md ├── camp-diversity-statement.md ├── code-of-conduct │ ├── code-of-conduct-resources.md │ ├── code-of-conduct.md │ ├── drupal-code-of-conduct.md │ └── example-code-of-conduct.md ├── common-exclusion-pitfalls │ ├── common-exclusion-pitfalls.md │ ├── diversity-enforcement.md │ ├── speakers-keynotes.md │ ├── venue.md │ └── verbiage.md ├── communicating-inclusion │ └── communicating-inclusion.md ├── diversity-goals │ └── diversity-goals.md ├── diversity-inclusion-strategies │ └── diversity-inclusion-strategies.md ├── introduction │ ├── contributors.md │ ├── introduction.md │ ├── markdown-templates.md │ └── the-big-goal.md └── resources │ └── resources.md └── styles ├── ebook.css ├── epub.css ├── mobi.css ├── pdf.css └── website.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/CODE_OF_CONDUCT.txt -------------------------------------------------------------------------------- /GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/GLOSSARY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/book.json -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/images/README.md -------------------------------------------------------------------------------- /images/contribution-edit-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/images/contribution-edit-link.png -------------------------------------------------------------------------------- /images/druplicon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/images/druplicon-small.png -------------------------------------------------------------------------------- /manuscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/README.md -------------------------------------------------------------------------------- /manuscript/camp-diversity-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/camp-diversity-statement.md -------------------------------------------------------------------------------- /manuscript/code-of-conduct/code-of-conduct-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/code-of-conduct/code-of-conduct-resources.md -------------------------------------------------------------------------------- /manuscript/code-of-conduct/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/code-of-conduct/code-of-conduct.md -------------------------------------------------------------------------------- /manuscript/code-of-conduct/drupal-code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/code-of-conduct/drupal-code-of-conduct.md -------------------------------------------------------------------------------- /manuscript/code-of-conduct/example-code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/code-of-conduct/example-code-of-conduct.md -------------------------------------------------------------------------------- /manuscript/common-exclusion-pitfalls/common-exclusion-pitfalls.md: -------------------------------------------------------------------------------- 1 | # Common Exclusion Pitfalls 2 | -------------------------------------------------------------------------------- /manuscript/common-exclusion-pitfalls/diversity-enforcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/common-exclusion-pitfalls/diversity-enforcement.md -------------------------------------------------------------------------------- /manuscript/common-exclusion-pitfalls/speakers-keynotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/common-exclusion-pitfalls/speakers-keynotes.md -------------------------------------------------------------------------------- /manuscript/common-exclusion-pitfalls/venue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/common-exclusion-pitfalls/venue.md -------------------------------------------------------------------------------- /manuscript/common-exclusion-pitfalls/verbiage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/common-exclusion-pitfalls/verbiage.md -------------------------------------------------------------------------------- /manuscript/communicating-inclusion/communicating-inclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/communicating-inclusion/communicating-inclusion.md -------------------------------------------------------------------------------- /manuscript/diversity-goals/diversity-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/diversity-goals/diversity-goals.md -------------------------------------------------------------------------------- /manuscript/diversity-inclusion-strategies/diversity-inclusion-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/diversity-inclusion-strategies/diversity-inclusion-strategies.md -------------------------------------------------------------------------------- /manuscript/introduction/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/introduction/contributors.md -------------------------------------------------------------------------------- /manuscript/introduction/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/introduction/introduction.md -------------------------------------------------------------------------------- /manuscript/introduction/markdown-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/introduction/markdown-templates.md -------------------------------------------------------------------------------- /manuscript/introduction/the-big-goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/introduction/the-big-goal.md -------------------------------------------------------------------------------- /manuscript/resources/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupaldiversity/event-organizer-packet/HEAD/manuscript/resources/resources.md -------------------------------------------------------------------------------- /styles/ebook.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/epub.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/mobi.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/pdf.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/website.css: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------