Files
velero/site/_includes/blog-post-card.html
Lee SpringerandSteve Kriss 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
818 B
HTML

<div class="col-xs col-md-4">
<div class="card card-light mb-3 mb-md-0 blog-card">
<div class="card-body match-height">
<div class="post-thumbnail">
{% if post.image %}
<img src="{{ post.image }}" alt="{{ post.title }}" />
{% else %}
<img src="/img/{{ site.logo }}" alt="{{ post.title }}" />
{% endif %}
</div>
<article class="post">
<h5 class="text-center font-weight-medium">
<a href="{{ site.baseurl }}{{ post.url }}" class="post-title">{{ post.title }}</a>
</h5>
<div class="post-entry">
{{ post.excerpt | strip_html }}
</div>
</article>
</div>
</div>
</div>