├── .DS_Store ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode └── extensions.json ├── Gemfile ├── LICENSE ├── README.md ├── assets ├── Degular-display-semibold.woff2 ├── Ibm-Plex-Mono-v7-Latin-Regular.woff2 ├── Inter-regular.woff2 └── Inter-semibold.woff2 ├── manifest.json ├── package.json ├── script.js ├── settings ├── community_background_image.png ├── community_image.png ├── favicon.svg ├── homepage_background_image.png └── logo.png ├── style.css ├── templates ├── article_page.hbs ├── category_page.hbs ├── community_post_list_page.hbs ├── community_post_page.hbs ├── community_topic_list_page.hbs ├── community_topic_page.hbs ├── contributions_page.hbs ├── document_head.hbs ├── error_page.hbs ├── footer.hbs ├── header.hbs ├── home_page.hbs ├── new_community_post_page.hbs ├── new_request_page.hbs ├── request_page.hbs ├── requests_page.hbs ├── search_results.hbs ├── section_page.hbs ├── subscriptions_page.hbs └── user_profile_page.hbs ├── thumbnail.png └── translations ├── ar.json ├── bg.json ├── cs.json ├── da.json ├── de.json ├── el.json ├── en-ca.json ├── en-gb.json ├── en-us.json ├── es-419.json ├── es-es.json ├── es.json ├── fi.json ├── fr-ca.json ├── fr.json ├── he.json ├── hi.json ├── hu.json ├── id.json ├── it.json ├── ja.json ├── ko.json ├── nl.json ├── no.json ├── pl.json ├── pt-br.json ├── pt.json ├── ro.json ├── ru.json ├── sv.json ├── th.json ├── tr.json ├── uk.json ├── vi.json ├── zh-cn.json └── zh-tw.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | style.css.map 3 | node_modules/ 4 | .zat 5 | .DS_Store -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.17.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/README.md -------------------------------------------------------------------------------- /assets/Degular-display-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/assets/Degular-display-semibold.woff2 -------------------------------------------------------------------------------- /assets/Ibm-Plex-Mono-v7-Latin-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/assets/Ibm-Plex-Mono-v7-Latin-Regular.woff2 -------------------------------------------------------------------------------- /assets/Inter-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/assets/Inter-regular.woff2 -------------------------------------------------------------------------------- /assets/Inter-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/assets/Inter-semibold.woff2 -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/package.json -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/script.js -------------------------------------------------------------------------------- /settings/community_background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/settings/community_background_image.png -------------------------------------------------------------------------------- /settings/community_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/settings/community_image.png -------------------------------------------------------------------------------- /settings/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/settings/favicon.svg -------------------------------------------------------------------------------- /settings/homepage_background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/settings/homepage_background_image.png -------------------------------------------------------------------------------- /settings/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/settings/logo.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/style.css -------------------------------------------------------------------------------- /templates/article_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/article_page.hbs -------------------------------------------------------------------------------- /templates/category_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/category_page.hbs -------------------------------------------------------------------------------- /templates/community_post_list_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/community_post_list_page.hbs -------------------------------------------------------------------------------- /templates/community_post_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/community_post_page.hbs -------------------------------------------------------------------------------- /templates/community_topic_list_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/community_topic_list_page.hbs -------------------------------------------------------------------------------- /templates/community_topic_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/community_topic_page.hbs -------------------------------------------------------------------------------- /templates/contributions_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/contributions_page.hbs -------------------------------------------------------------------------------- /templates/document_head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/document_head.hbs -------------------------------------------------------------------------------- /templates/error_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/error_page.hbs -------------------------------------------------------------------------------- /templates/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/footer.hbs -------------------------------------------------------------------------------- /templates/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/header.hbs -------------------------------------------------------------------------------- /templates/home_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/home_page.hbs -------------------------------------------------------------------------------- /templates/new_community_post_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/new_community_post_page.hbs -------------------------------------------------------------------------------- /templates/new_request_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/new_request_page.hbs -------------------------------------------------------------------------------- /templates/request_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/request_page.hbs -------------------------------------------------------------------------------- /templates/requests_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/requests_page.hbs -------------------------------------------------------------------------------- /templates/search_results.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/search_results.hbs -------------------------------------------------------------------------------- /templates/section_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/section_page.hbs -------------------------------------------------------------------------------- /templates/subscriptions_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/subscriptions_page.hbs -------------------------------------------------------------------------------- /templates/user_profile_page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/templates/user_profile_page.hbs -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/thumbnail.png -------------------------------------------------------------------------------- /translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/ar.json -------------------------------------------------------------------------------- /translations/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/bg.json -------------------------------------------------------------------------------- /translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/cs.json -------------------------------------------------------------------------------- /translations/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/da.json -------------------------------------------------------------------------------- /translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/de.json -------------------------------------------------------------------------------- /translations/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/el.json -------------------------------------------------------------------------------- /translations/en-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/en-ca.json -------------------------------------------------------------------------------- /translations/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/en-gb.json -------------------------------------------------------------------------------- /translations/en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/en-us.json -------------------------------------------------------------------------------- /translations/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/es-419.json -------------------------------------------------------------------------------- /translations/es-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/es-es.json -------------------------------------------------------------------------------- /translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/es.json -------------------------------------------------------------------------------- /translations/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/fi.json -------------------------------------------------------------------------------- /translations/fr-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/fr-ca.json -------------------------------------------------------------------------------- /translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/fr.json -------------------------------------------------------------------------------- /translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/he.json -------------------------------------------------------------------------------- /translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/hi.json -------------------------------------------------------------------------------- /translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/hu.json -------------------------------------------------------------------------------- /translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/id.json -------------------------------------------------------------------------------- /translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/it.json -------------------------------------------------------------------------------- /translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/ja.json -------------------------------------------------------------------------------- /translations/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/ko.json -------------------------------------------------------------------------------- /translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/nl.json -------------------------------------------------------------------------------- /translations/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/no.json -------------------------------------------------------------------------------- /translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/pl.json -------------------------------------------------------------------------------- /translations/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/pt-br.json -------------------------------------------------------------------------------- /translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/pt.json -------------------------------------------------------------------------------- /translations/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/ro.json -------------------------------------------------------------------------------- /translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/ru.json -------------------------------------------------------------------------------- /translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/sv.json -------------------------------------------------------------------------------- /translations/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/th.json -------------------------------------------------------------------------------- /translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/tr.json -------------------------------------------------------------------------------- /translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/uk.json -------------------------------------------------------------------------------- /translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/vi.json -------------------------------------------------------------------------------- /translations/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/zh-cn.json -------------------------------------------------------------------------------- /translations/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/postman-zendesk-support-theme/HEAD/translations/zh-tw.json --------------------------------------------------------------------------------