mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-09 22:47:27 +00:00
* 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>
21 lines
868 B
HTML
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> |