{% extends "tutorials/base_tutorials.html" %} {% block title %}Tutorials{% endblock %} {% block content %} {% if page == 1 %}

Tutorials

These tutorials provide a step-by-step process to doing development and dev-ops activities on Ubuntu machines, servers or devices.

You can write your own ›

{% endif %}
{% if query and total_results == 0 %}

Why not try widening your search?

You can do this by:

  • Adding alternative words or phrases
  • Using individual words instead of phrases
  • Trying a different spelling
{% else %}
{% if query %}

{{ total_results }} search result{%- if total_results > 1 -%}s{%- endif -%}

{% endif %} {% for item in tutorials %} {% if loop.index <= posts_per_page * page and loop.index >= posts_per_page * page - posts_per_page + 1 %}
{{ item.categories }}

{{ item.title | safe }}

{{ item.summary | safe }}

{% endif %} {% endfor %}
{% endif %} {% with %} {% set total_pages = total_pages %} {% set current_page = page %} {% include "shared/_pagination.html" %} {% endwith %} {% endblock %}