summaryrefslogtreecommitdiffhomepage
path: root/website/content/blog/index.html
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-05-06 14:15:15 -0700
committerAdin Scannell <ascannell@google.com>2020-05-06 14:15:15 -0700
commite8bb5832b32d865e8dc257b01bebfd7dafeaaccf (patch)
treec5ea0518f0aa7ac1fcc999119030e931500d864c /website/content/blog/index.html
parent279f1eb7abb28966ef633fa61418bffad4a716b0 (diff)
parent957e26a6f30d40e2bff042d76a327d0a2cfbabae (diff)
Merge gvisor-website
Diffstat (limited to 'website/content/blog/index.html')
-rwxr-xr-xwebsite/content/blog/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/website/content/blog/index.html b/website/content/blog/index.html
new file mode 100755
index 000000000..f10f5524d
--- /dev/null
+++ b/website/content/blog/index.html
@@ -0,0 +1,16 @@
+---
+title: Blog
+layout: blog
+---
+
+{% for post in paginator.posts %}
+<div>
+ <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
+ <div class="blog-meta">
+ {% include byline.html authors=post.authors date=post.date %}
+ </div>
+ <p>{{ post.excerpt | strip_html }}</p>
+ <p><a href="{{ post.url }}">Full Post &raquo;</a></p>
+</div>
+{% endfor %}
+{% include paginator.html %}