Files
velero/site/_includes/case-studies.html
Lee Springer d995018a3e add velero.io site content, move docs to under site/docs (#1489)
* Adding in Jekyll site | Adjusting gitignore for Jekyll build | Moving docs to site folder

Signed-off-by: Lee Springer <lee@smalltalk.agency>

Adding in Jekyll site | Adjusting gitignore for Jekyll build | Moving docs to site folder

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Restore main.go to original location

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Updates to footer

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Updates to homepage links

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Content updates

Signed-off-by: Lee Springer <lee@smalltalk.agency>
2019-05-17 10:56:03 -07:00

21 lines
868 B
HTML

<div class="row">
{% for casestudy in site.casestudies %}
<div class="card card-dark col-md-12 mb-3 mb-sm-0 {% if forloop.index > 1 %}mt-3{% endif %}">
<div class="card-body match-height text-center">
{% if casestudy.title != blank %}
<h5 class="card-title">{{ casestudy.title }}</h5>
{% endif %}
{% if casestudy.subtitle != blank %}
<h6 class="card-subtitle mb-2">{{ casestudy.subtitle }}</h6>
{% endif %}
<p class="card-text">{{ casestudy.content | markdownify }}</p>
{% for link in casestudy.links %}
<a class="card-link btn btn-primary" href="{{ link[1] }}">{{ link[0] }}</a>
{% endfor %}
</div>
</div>
{% if limit > 0 and forloop.index >= limit %}
{% break %}
{% endif %}
{% endfor %}
</div>