mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

* add plasma in-memory object store blog post * modifications for Ray blog * add arrow blog reference * update * rename * Improve formatting.
19 lines
396 B
HTML
19 lines
396 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
|
|
|
|
<div class="home">
|
|
|
|
<ul class="posts">
|
|
{% for post in site.posts %}
|
|
<li>
|
|
<span>{{ post.date | date: "%b %-d, %Y" }}</span>
|
|
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
{{ post.excerpt }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|