---
layout: page
title: "How-to Guides"
excerpt: Learn Cerb with step-by-step how-to guides.
permalink: /resources/guides/
redirect_from:
- /guides/
- /cookbook/
- /integrations/
jumbotron:
title: How-to Guides
tagline: Learn Cerb with step-by-step guides.
breadcrumbs:
-
label: Resources
url: /resources/
---
{% include testimonials.html %}
{% assign topics = site.guides | sort: 'id' | group_by: 'topic' %}
{% for topic in topics %}
{{ topic.name }}
{% if topic.name == 'Automations' or topic.name == 'Bots' or topic.name == 'Dashboards' or topic.name == 'Integrations' or topic.name == 'Developers' or topic.name == 'Mail' or topic.name == 'Machine Learning' %}
{% assign subtopics = topic.items | sort: 'id' | group_by: 'subtopic' %}
{% assign subs = subtopics|sort:'name' %}
{% for subtopic in subs %}
{{ subtopic.name }}
{% assign items = subtopic.items | sort: 'title' %}
{% for guide in items %}
-
{{ guide.title }}
{% endfor %}
{% endfor %}
{% else %}
{% assign items = topic.items | sort: 'title' %}
{% for guide in items %}
-
{{ guide.title }}
{% endfor %}
{% endif %}
{% endfor %}