Sha256: 10f3107dbcd2ac2ffe245a563a393971b47d24105c3ed101f24cd04934539f5d

Contents?: true

Size: 1.41 KB

Versions: 3

Compression:

Stored size: 1.41 KB

Contents

{%- assign info = include.data %}
<article class='rounded'>
  {%- assign len =  info.boxes | size %}
  {%- if len > 1 %}
    {%- assign splitContent = 'split-content' %}
    {%- assign smaller = 'smaller' %}
  {%- else %}
    {%- assign splitContent = '' %}
    {%- assign smaller = '' %}
  {%- endif %}
  <div class='max-width {{ splitContent }}'>
  {%- for box in info.boxes %}
    <div class='box'
      style='
        color: {{ box.color | default: 'black' }};
        background-image: {{ box.background-image | default: 'transparent' }};
      '>
      {%- if box.image %}
        <div class='image-overlay'>
          {%- if box.image.color %}
          <div class='overlay'
            onclick='playGif(this)'
            style='background-image: linear-gradient(0deg, {{ box.image.color }}, transparent)'></div>
          {%- endif %}
          <img onclick='playGif(this)'
            src='{{ box.image.src }}'
            data-gif='{{ box.image.gif }}'
            title='{{ box.image.text }}'
            width='{{ box.image.width | default: "100%" }}' />
        </div>
      {%- endif %}
      <div class='text-content'>
        <h1 class='{{ box.class }}'>{{ box.title }}</h1>
        <p>{{ box.text }}</p>
        {%- if box.button %}
          <a class='a-button link' href='{{ box.button.href }}'>
            {{ box.button.label }}
          </a>
        {%- endif %}
      </div>
    </div>
  {%- endfor %}
  </div>
</article>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
askclass-home-theme-0.1.4 _includes/boxes/rounded.html
askclass-home-theme-0.1.3 _includes/boxes/rounded.html
askclass-home-theme-0.1.2 _includes/boxes/rounded.html