Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Instructor

Jonathan Tsang edited this page Sep 1, 2017 · 1 revision

Description

Used On

  • Bundle
  • Course Landing
  • Site Landing

Template Markup

<section class="instructor {% if section.settings.background_color_preset != 'none' %}{{ section.settings.background_color_preset | append: '-section-color-preset' }}{% endif %}" data-preview-item="instructor">
  <div class='container'>

    <div class="section__content">

      {% if section.settings.heading != blank %}
        <h3 class="section__heading">{{ section.settings.heading }}</h3>
        {% if section.settings.subheading != blank %}
          <h4 class="section__subheading">{{ section.settings.subheading }}</h4>
        {% endif %}
      {% endif %}

      <div class="instructor__list">
      {% for block in section.blocks %}
        <div class="instructor__profile">
          {% if block.settings.avatar != blank %}
            <img class="instructor__avatar sr-only" alt="{{ block.settings.full_name }}" src="{{ block.settings.avatar }}" />
          {% endif %}
          <h5 class="instructor__name">
            {{ block.settings.full_name }}
          </h5>
          {% if block.settings.title != blank %}
          <h6 class="instructor__title">
            {{ block.settings.title }}
          </h6>
          {% endif %}
          {% if block.settings.bio != blank %}
          <div class="instructor__bio">
            {{ block.settings.bio }}
          </div>
          {% endif %}
        </div>
      {% endfor %}
      </div>

    </div>

  </div>
</section>

{% style %}
...
{% endstyle %}

{% schema %}
...
{% schema %}

Style

Alignment, Layout & Style modifiers will be encapsulated with {% style %} & {% endstyle %} tags.

section.instructor {

  .section__heading,
  .section__subheading {
    text-align: {{ section.settings.heading_alignment }};
  }
}

Schema

Schema will be encapsulated with {% schema %} & {% endschema %} tags.

{
  "label": "Instructors",
  "settings": [
    {
      "label": "Headings",
      "settings": [
        {
          "type": "text",
          "id": "heading",
          "label": "Heading",
          "default": ""
        },
        {
          "type": "text",
          "id": "subheading",
          "label": "Subheading",
          "default": ""
        },
        {
          "type": "radio",
          "id": "heading_alignment",
          "label": "Alignment",
          "description": "Headings will inherit the same alignment",
          "default": "left",
          "options": [
            {
              "value": "left",
              "label": "Left"
            },
            {
              "value": "center",
              "label": "Center"
            },
            {
              "value": "right",
              "label": "Right"
            }
          ]
        }
      ]
    },
    {
      "label": "Background",
      "settings": [
        {
          "type": "select",
          "id": "background_color_preset",
          "label": "Color Preset",
          "description": "Presets can be configured in the Colors configuration menu",
          "default": "primary",
          "options": [
            { "value": "none", "label": "None" },
            { "value": "primary", "label": "Primary" },
            { "value": "secondary", "label": "Secondary" },
            { "value": "tertiary", "label": "Tertiary" }
          ]
        }
      ]
    }
  ],
  "blocks": {
    "label": "Add Instructor",
    "limit": 3,
    "types": [
      {
        "type": "instructor",
        "label": "",
        "settings": [
          {
            "type": "instructor_picker",
            "id": "instructor",
            "label": "Select Course Instructor"
          }
        ]
      }
    ],
    "defaults": []
  }
}
Clone this wiki locally