--- layout: page title: Forms permalink: /forms/ icon: fa-check-square-o order: 10 ---

Default forms

{% for data in site.data.formdata %}
{% if data.type == "select" %} {% elsif data.type == "checkbox" %} {% for option in data.options %}
{% endfor %} {% elsif data.type == "radio" %} {% for option in data.options %}
{% endfor %} {% elsif data.type == "textarea" %} {% else %} {% endif %}
{% endfor %}

Inline forms

{% for data in site.data.formdata %}
{% if data.type == "select" %} {% elsif data.type == "checkbox" %} {% for option in data.options %}
{% endfor %} {% elsif data.type == "radio" %} {% for option in data.options %}
{% endfor %} {% elsif data.type == "textarea" %} {% else %} {% endif %}
{% endfor %}
{% include edit.html %}