Skip to content

Latest commit

 

History

History
77 lines (66 loc) · 2.43 KB

tutorials.md

File metadata and controls

77 lines (66 loc) · 2.43 KB
layout title permalink sequence type
page
Tutorials
/tutorials
1
header

List of {{ site.tutorials.size }} getting started tutorials with minimal, reproducible, complete code.

<style id="search_style"></style>

{% for tut in site.tutorials %} {{ tut.title }}

{% if tut.dev_board %} {{ tut.dev_board }} {% endif %}

  {% if tut.firmware %}
    {% for firmware in tut.firmware %}
      <span class="tag is-light is-info">{{ firmware }}</span>
    {% endfor %}
  {% endif %}

  {% if tut.chips %}
    {% for chip in tut.chips %}
      <span class="tag is-light is-warning">{{ chip }}</span>
    {% endfor %}
  {% endif %}

  {% if tut.tool %}
    <span class="tag is-light is-danger">{{ tut.tool }}</span>
  {% endif %}

  {% if tut.sensors %}
    {% for sensor in tut.sensors %}
    <span class="tag is-light is-primary">{{ sensor }}</span>
    {% endfor %}
  {% endif %}

  {% if tut.versions %}
    {% for v in tut.versions %}
      <span class="tag is-light is-link">{{ v.name }} v{{v.version}}</span>
    {% endfor %}
  {% endif %}

  <!-- TODO -->
  {% if jekyll.environment == "development" %}
    {% if tut.video %}
    {% else %}
    <span class="tag is-danger">TODO VIDEO</span>
    {% endif %}

    {% if tut.images.prototype %}
    {% else %}
    <span class="tag is-success">TODO images</span>
    {% endif %}
  {% endif %}
</div>
{% endfor %}