├── .github ├── FUNDING.yml └── workflows │ ├── black.yml │ ├── curlylint.yaml │ ├── lint-global.yaml │ ├── pylint.yml │ └── update-and-deploy.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── bw-dev ├── crowdin.yml ├── generate.py ├── i18n.py ├── instances.json ├── locale ├── af_ZA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ar_SA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ba_RU │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── bg_BG │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── bn_BD │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── bn_IN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ca_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── cdo │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── cs_CZ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── cy_GB │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── da_DK │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── de_DE │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── el_GR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── en_Oulipo │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── en_US │ └── LC_MESSAGES │ │ ├── messages.mo │ │ ├── messages.po │ │ └── messages.po-e ├── eo_UY │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── eu_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fi_FI │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fo_FO │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ga_IE │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── gl_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── he_IL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── hu_HU │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── id_ID │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── it_IT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ja_JP │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ko_KR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── lt_LT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── nl_NL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── no_NO │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pl_PL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pt_BR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pt_PT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ro_RO │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ru_RU │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── sk_SK │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── sl_SI │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── sr_SP │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── sv_SE │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── tr_TR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── uk_UA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── vi_VN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── zh_Hans │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zh_Hant │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── requirements.txt ├── settings.py ├── site ├── ca │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── de │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── eo │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── es │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── eu │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── fr │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── get-involved │ └── index.html ├── gl │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── index.html ├── instances.json ├── instances │ └── index.html ├── it │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── lt │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── no │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── pl │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── pt-br │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── pt-pt │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── ro │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html ├── static │ ├── css │ │ ├── bookwyrm.css │ │ ├── bulma.min.css │ │ ├── fonts │ │ │ ├── .editorconfig │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ └── icons.css │ └── images │ │ ├── book-grid.webp │ │ ├── compose.png │ │ ├── favicon.ico │ │ ├── logo-small.png │ │ ├── logo.png │ │ ├── maintainer-headshot.png │ │ └── phone.png ├── sv │ ├── get-involved │ │ └── index.html │ ├── index.html │ └── instances │ │ └── index.html └── zh │ ├── get-involved │ └── index.html │ ├── index.html │ └── instances │ └── index.html └── templates ├── get-involved └── index.html ├── index.html ├── instances └── index.html └── layout.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/curlylint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/.github/workflows/curlylint.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/.github/workflows/lint-global.yaml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/update-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/.github/workflows/update-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | __pycache__ 3 | **/*.swp 4 | venv/ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/README.md -------------------------------------------------------------------------------- /bw-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/bw-dev -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/crowdin.yml -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/generate.py -------------------------------------------------------------------------------- /i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/i18n.py -------------------------------------------------------------------------------- /instances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/instances.json -------------------------------------------------------------------------------- /locale/af_ZA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/af_ZA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/af_ZA/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/af_ZA/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ar_SA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ar_SA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ar_SA/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ar_SA/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ba_RU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ba_RU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ba_RU/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ba_RU/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bg_BG/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/bg_BG/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/bg_BG/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/bg_BG/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bn_BD/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/bn_BD/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/bn_BD/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/bn_BD/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bn_IN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/bn_IN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/bn_IN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/bn_IN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ca_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ca_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ca_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ca_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/cdo/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/cdo/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/cdo/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/cdo/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/cs_CZ/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/cs_CZ/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/cy_GB/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/cy_GB/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/cy_GB/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/cy_GB/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/da_DK/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/da_DK/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/da_DK/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/da_DK/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/de_DE/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/de_DE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/el_GR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/el_GR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/el_GR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/el_GR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en_Oulipo/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/en_Oulipo/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/en_Oulipo/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/en_Oulipo/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/en_US/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/messages.po-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/en_US/LC_MESSAGES/messages.po-e -------------------------------------------------------------------------------- /locale/eo_UY/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/eo_UY/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/eo_UY/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/eo_UY/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/es_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/eu_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/eu_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/eu_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/eu_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/fi_FI/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/fi_FI/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fo_FO/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/fo_FO/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fo_FO/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/fo_FO/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/fr_FR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/fr_FR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ga_IE/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ga_IE/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ga_IE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ga_IE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/gl_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/gl_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/gl_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/gl_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/he_IL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/he_IL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/he_IL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/he_IL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/hu_HU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/hu_HU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/hu_HU/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/hu_HU/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/id_ID/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/id_ID/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/id_ID/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/id_ID/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/it_IT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/it_IT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ja_JP/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ja_JP/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ja_JP/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ja_JP/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ko_KR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ko_KR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/lt_LT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/lt_LT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/lt_LT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/lt_LT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/nl_NL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/nl_NL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/no_NO/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/no_NO/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/no_NO/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/no_NO/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/pl_PL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/pl_PL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/pt_BR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/pt_BR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pt_PT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/pt_PT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pt_PT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/pt_PT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ro_RO/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ro_RO/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ro_RO/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ro_RO/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ru_RU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/ru_RU/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sk_SK/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sk_SK/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/sk_SK/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sk_SK/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sl_SI/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sl_SI/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/sl_SI/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sl_SI/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sr_SP/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sr_SP/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/sr_SP/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sr_SP/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sv_SE/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sv_SE/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/sv_SE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/sv_SE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/tr_TR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/tr_TR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/tr_TR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/tr_TR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/uk_UA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/uk_UA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/uk_UA/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/uk_UA/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/vi_VN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/vi_VN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/vi_VN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/vi_VN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/zh_Hans/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/zh_Hans/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/zh_Hans/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/zh_Hans/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/zh_Hant/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/zh_Hant/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/zh_Hant/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/locale/zh_Hant/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/settings.py -------------------------------------------------------------------------------- /site/ca/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/ca/get-involved/index.html -------------------------------------------------------------------------------- /site/ca/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/ca/index.html -------------------------------------------------------------------------------- /site/ca/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/ca/instances/index.html -------------------------------------------------------------------------------- /site/de/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/de/get-involved/index.html -------------------------------------------------------------------------------- /site/de/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/de/index.html -------------------------------------------------------------------------------- /site/de/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/de/instances/index.html -------------------------------------------------------------------------------- /site/eo/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/eo/get-involved/index.html -------------------------------------------------------------------------------- /site/eo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/eo/index.html -------------------------------------------------------------------------------- /site/eo/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/eo/instances/index.html -------------------------------------------------------------------------------- /site/es/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/es/get-involved/index.html -------------------------------------------------------------------------------- /site/es/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/es/index.html -------------------------------------------------------------------------------- /site/es/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/es/instances/index.html -------------------------------------------------------------------------------- /site/eu/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/eu/get-involved/index.html -------------------------------------------------------------------------------- /site/eu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/eu/index.html -------------------------------------------------------------------------------- /site/eu/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/eu/instances/index.html -------------------------------------------------------------------------------- /site/fr/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/fr/get-involved/index.html -------------------------------------------------------------------------------- /site/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/fr/index.html -------------------------------------------------------------------------------- /site/fr/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/fr/instances/index.html -------------------------------------------------------------------------------- /site/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/get-involved/index.html -------------------------------------------------------------------------------- /site/gl/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/gl/get-involved/index.html -------------------------------------------------------------------------------- /site/gl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/gl/index.html -------------------------------------------------------------------------------- /site/gl/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/gl/instances/index.html -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/index.html -------------------------------------------------------------------------------- /site/instances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/instances.json -------------------------------------------------------------------------------- /site/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/instances/index.html -------------------------------------------------------------------------------- /site/it/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/it/get-involved/index.html -------------------------------------------------------------------------------- /site/it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/it/index.html -------------------------------------------------------------------------------- /site/it/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/it/instances/index.html -------------------------------------------------------------------------------- /site/lt/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/lt/get-involved/index.html -------------------------------------------------------------------------------- /site/lt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/lt/index.html -------------------------------------------------------------------------------- /site/lt/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/lt/instances/index.html -------------------------------------------------------------------------------- /site/no/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/no/get-involved/index.html -------------------------------------------------------------------------------- /site/no/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/no/index.html -------------------------------------------------------------------------------- /site/no/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/no/instances/index.html -------------------------------------------------------------------------------- /site/pl/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pl/get-involved/index.html -------------------------------------------------------------------------------- /site/pl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pl/index.html -------------------------------------------------------------------------------- /site/pl/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pl/instances/index.html -------------------------------------------------------------------------------- /site/pt-br/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pt-br/get-involved/index.html -------------------------------------------------------------------------------- /site/pt-br/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pt-br/index.html -------------------------------------------------------------------------------- /site/pt-br/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pt-br/instances/index.html -------------------------------------------------------------------------------- /site/pt-pt/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pt-pt/get-involved/index.html -------------------------------------------------------------------------------- /site/pt-pt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pt-pt/index.html -------------------------------------------------------------------------------- /site/pt-pt/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/pt-pt/instances/index.html -------------------------------------------------------------------------------- /site/ro/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/ro/get-involved/index.html -------------------------------------------------------------------------------- /site/ro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/ro/index.html -------------------------------------------------------------------------------- /site/ro/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/ro/instances/index.html -------------------------------------------------------------------------------- /site/static/css/bookwyrm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/bookwyrm.css -------------------------------------------------------------------------------- /site/static/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/bulma.min.css -------------------------------------------------------------------------------- /site/static/css/fonts/.editorconfig: -------------------------------------------------------------------------------- 1 | # @see https://editorconfig.org/ 2 | 3 | [*.svg] 4 | insert_final_newline = unset 5 | -------------------------------------------------------------------------------- /site/static/css/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/fonts/icomoon.eot -------------------------------------------------------------------------------- /site/static/css/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/fonts/icomoon.svg -------------------------------------------------------------------------------- /site/static/css/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/fonts/icomoon.ttf -------------------------------------------------------------------------------- /site/static/css/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/fonts/icomoon.woff -------------------------------------------------------------------------------- /site/static/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/css/icons.css -------------------------------------------------------------------------------- /site/static/images/book-grid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/book-grid.webp -------------------------------------------------------------------------------- /site/static/images/compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/compose.png -------------------------------------------------------------------------------- /site/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/favicon.ico -------------------------------------------------------------------------------- /site/static/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/logo-small.png -------------------------------------------------------------------------------- /site/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/logo.png -------------------------------------------------------------------------------- /site/static/images/maintainer-headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/maintainer-headshot.png -------------------------------------------------------------------------------- /site/static/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/static/images/phone.png -------------------------------------------------------------------------------- /site/sv/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/sv/get-involved/index.html -------------------------------------------------------------------------------- /site/sv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/sv/index.html -------------------------------------------------------------------------------- /site/sv/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/sv/instances/index.html -------------------------------------------------------------------------------- /site/zh/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/zh/get-involved/index.html -------------------------------------------------------------------------------- /site/zh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/zh/index.html -------------------------------------------------------------------------------- /site/zh/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/site/zh/instances/index.html -------------------------------------------------------------------------------- /templates/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/templates/get-involved/index.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/instances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/templates/instances/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookwyrm-social/join-bookwyrm/HEAD/templates/layout.html --------------------------------------------------------------------------------