mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
This PR explicitly defines a marker for where the excerpt ends in each blog post. It also quotes the `title` in the frontmatter of each blog post, so that `:` characters can exist in blog post titles.
28 lines
610 B
HTML
28 lines
610 B
HTML
---
|
|
title: Blog
|
|
layout: blog
|
|
feed: true
|
|
pagination:
|
|
enabled: true
|
|
---
|
|
|
|
{% 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 }}</p>
|
|
<p><a href="{{ post.url }}">Read more »</a></p>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% if paginator.total_pages > 1 %}
|
|
{% include paginator.html %}
|
|
{% endif %}
|
|
|
|
<hr>
|
|
|
|
If you would like to contribute to the gVisor blog check out the
|
|
<a href="https://github.com/google/gvisor/tree/master/website/blog">instructions</a>.
|