Updating the main configuration file: _config.yml
Important: You will only need to modify the
_config.yml
if you wish to make major changes to the way your new guide repository makes use of the remote ELIXIR ToolKit theme. Instructions for how to do this, and what the different options are, can be found here. Navigation tiles
See the ELIXIR Toolkit theme for more information.
Include navigation tiles for all pages
To add tiles for guide pages that you have created, add the following code to the page you would like the tiles to appear on:
{% include section-navigation-tiles.html type="guides" %}
You can also add the following:
type="type_value"
: only shows tiles for pages that have the indicatedtype_value
in the page headersearch=true
: enables searching - useful for large tile setsexcept="index.md"
: removes specific tiles
Example - only pages of type "type_value"
{% include section-navigation-tiles.html type="quick_start" %}
Example - only pages of type "guides"
{% include section-navigation-tiles.html type="guides" %}