mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-06 21:36:30 +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>
55 lines
1.6 KiB
HTML
55 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{% include head.html %}
|
|
|
|
<body id="blog">
|
|
<div class="container-fluid site-outer-container">
|
|
<div class="site-container">
|
|
{% include site-header.html %}
|
|
<div class="post-single-hero bg-color-{{ site.hero.background-color }}">
|
|
<div class="section">
|
|
<div class="section-content">
|
|
<h1>{{ page.title }}</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="post-single-body">
|
|
<div class="section section-card">
|
|
<div class="section-content pt-4 pb-0">
|
|
<div class="post-single-meta">
|
|
<div class="post-single-meta-author">
|
|
{% if page.author_avatar %}
|
|
<div class="post-single-meta-author-avatar">
|
|
<img src="{{ page.author_avatar }}" alt="{{ page.author_name }}">
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="post-single-meta-author-name">
|
|
<a href="/tags/{{ page.author_name | urlencode }}">{{ page.author_name }}</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="post-single-meta-date">
|
|
{{ page.date | date: "%B %d, %Y" }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="post-single-content">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section pt-3">
|
|
<div class="section-content section-content-thin">
|
|
{% include related-posts.html %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |