Files
Etienne Perot 647c6411b9 blog: Support HTML excerpts and titles with : characters.
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.
2024-09-20 18:16:00 -07:00

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 &raquo;</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>.