Skip to content

evoko/zendesk-theme

Repository files navigation

Evoko theme for Zendesk Guide

This repo contains the Evoko support frontend running on the Zendesk Guide platform.

The theme is based of the default Zendesk Copenhagen theme which is designed to be responsive and accessible. Check out the Using themes and customizing your Help Center section and developer documentation to learn more.

Project structure

When importing a theme to Zendesk Guide it will mainly look for the following files and folders:

Other files and folders can be added to the project but will (to my knowledge) be ignored when importing.

Templates

For markup Zendesk Guide uses Handlebars and each template is stored in the templates/ folder. All available templates for a Zendesk Guide theme that has all the features enabled are included however not all of them are used in our case (like "Community").

Additionally you can add up to 10 optional templates for:

  • Article page
  • Category page
  • Section page

You do this by creating files under the folders templates/article_pages/, templates/category_pages/ or templates/section_pages/. Learn more here.

Styles

The styles that Zendesk Guide will read are in the style.css file located in the project root.

For development this project uses the CSS preprocessor Sass with the .scss syntax where we split styles into Sass partials. All the partials are put under the styles/ folder and included in the index.scss which is then compiled to style.css.

styles/_partial.scss 🡆 styles/index.scss 🡆 style.css

Scripts

The main JavaScript file script.js is located in the project root and will be added in the document <body> of every page.

JavaScript that you do not think belong on all pages can be added inline in templates or added as regular *.js files in the assets folder and then be included in the appropriate template(s).

Assets folder

You can add assets as images and files to the assets/ folder and use them in your CSS and templates, for example:

# template
{{asset 'cat-image.jpg'}}

# css
$assets-cat-image-jpg

The assets will be uploaded to Zendesk CDN (theme.zdassets.com). You can read more about assets here.

Manifest file

The manifest.json contains theme metadata and allows you to define a group of settings for your theme that can then be changed via the UI in theming center. You can read more about the manifest file here.

Settings folder

If you have a type variable of file, you need to provide a default file for that variable in the settings/ folder. This file will be used on the settings panel by default and users can upload a different file if they like. For Example, if you'd like to have a variable for the background image of a section, the variable in your manifest file would look something like this:

{
  ...
  "settings": [{
    "label": "Images",
    "variables": [{
      "identifier": "background_image",
      "type": "file",
      "description": "Background image for X section",
      "label": "Background image",
    }]
  }]
}

And this would look for a file inside the settings/ folder named background_image.

Developing

You can use your favorite IDE to develop and preview your changes locally in a web browser using the Zendesk Apps Tools (ZAT) which is installed as a Ruby gem. For more details, see Previewing theme changes locally.

To avoid having to enter your Zendesk credentials every time you start your development environment you can create a .zat file in the project root which contains your credentials in json format, for example like this:

{
  "subdomain": "erm",
  "username": "john.doe@evoko.se/token",
  "password": "YOUR_API_TOKEN"
}

Once you have ZAT setup make sure Node.js is installed and then use the below commands:

# install dependencies
npm install

# start the development server
npm start

Deploying

For deploying changes to production we use the Zendesk GitHub integration, the workflow can be summarized to:

  1. Increment the version in manifest.json (without this Zendesk won't recognize an update).
  2. Commit your changes and merge your branch to the main branch.
  3. In the Zendesk Guide theming center press Update from GitHub.
  4. Changes should now be live! 🎉