mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-07-31 12:32:44 +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
818 B
HTML
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> |