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>
13 lines
312 B
HTML
13 lines
312 B
HTML
<div class="row">
|
|
{% for post in site.posts %}
|
|
{% include blog-post-card.html %}
|
|
{% if limit > 0 and forloop.index >= limit %}
|
|
{% break %}
|
|
{% endif %}
|
|
{% assign row = forloop.index | modulo: 3 %}
|
|
{% if row == 0 %}
|
|
</div>
|
|
<div class="row mt-4">
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div> |