Sha256: 33c19e2e4182cee918f690c8012cf5cc3db5cf44f54db8fcb7eda1357bc327ae

Contents?: true

Size: 897 Bytes

Versions: 2

Compression:

Stored size: 897 Bytes

Contents

---
layout: default
---

{%- assign portada = site.posts | where: 'layout', 'portada' | first -%}
{%- assign botones = site.posts | where: 'layout', 'boton' -%}

<section class="mt-5 mb-5">
  <h1>{{ portada.title }}</h1>
  <p class="lead">{{ portada.author | join: ', ' }} &mdash; {{ portada.description }}</p>

  {%- if portada.image.path -%}
    <img
      src="{{ portada.image.path }}"
      class="img-fluid"
      alt="{{ portada.image.description | default: portada.title }}">
  {%- endif -%}

  <div class="mt-5 mb-5">
    {{ portada.content }}
  </div>
</section>

<section class="row justify-content-center mb-5">
  <div class="col-md-6">
    {% for boton in botones %}
      <a
        class="btn btn-block btn-lg btn-{{ boton.slug }} mt-3"
        target="_blank"
        rel="noopener"
        href="{{ boton.payment_url }}">{{ boton.title }}</a>
    {% endfor %}
  </div>
</section>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sutty-donaciones-jekyll-theme-0.3.0rc0 _layouts/home.html
sutty-donaciones-jekyll-theme-0.2.0 _layouts/home.html