github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/website/blog/index.html (about)

     1  ---
     2  title: Blog
     3  layout: blog
     4  feed: true
     5  pagination:
     6    enabled: true
     7  ---
     8  
     9  {% for post in paginator.posts %}
    10  <div>
    11    <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
    12    <div class="blog-meta">
    13      {% include byline.html authors=post.authors date=post.date %}
    14    </div>
    15    <p>{{ post.excerpt | strip_html }}</p>
    16    <p><a href="{{ post.url }}">Full Post &raquo;</a></p>
    17  </div>
    18  {% endfor %}
    19  
    20  {% if paginator.total_pages > 1 %}
    21  {% include paginator.html %}
    22  {% endif %}
    23  
    24  <hr>
    25  
    26  If you would like to contribute to the gVisor blog check out the
    27  <a href="https://github.com/google/gvisor/tree/master/website/blog">instructions</a>.