Commit 2ff18799 authored by Alex Feyerke's avatar Alex Feyerke Committed by Chris Lamb
Browse files

refactor: inline the user stories since we’ll only need them once

parent fb1cb173
Loading
Loading
Loading
Loading
+21 −1
Original line number Diff line number Diff line
@@ -26,7 +26,27 @@ permalink: /

{% include nav_buttons.html %}

{% include user-stories.html %}
<div  class="row justify-content-center">
  <h2 class="text-center mb-4">Why Reproducible Builds Matter</h2>
  <div class="row justify-content-center">
    {% for card in site.data.user-stories.cards %}
    <div class="col-lg-4 col-md-6 col-sm-12 mb-4 d-flex">
      <div class="card h-100 shadow-sm">
        <div class="card-body">
          <div
            class="bg-light d-flex justify-content-center align-items-center p-3 rounded-circle mx-auto mb-3"
            style="width: 50px; height: 50px; font-size: 24px"
          >
            {{ card.emoji }}
          </div>
          <h3 class="card-title">{{ card.title }}</h3>
          <p class="card-text text-left">{{ card.description }}</p>
        </div>
      </div>
    </div>
    {% endfor %}
  </div>
</div>

<div class="container my-5">
    <div class="row">