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

* commit jekyll template * Port blog post to markdown. * Small changes. * Improvements to layout and post. * More improvements. * Add computation graph figures to the blog post. * Small changes. * Update gitignore.
13 lines
258 B
HTML
13 lines
258 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="home">
|
|
|
|
{% for post in site.posts %}
|
|
<span>{{ post.date | date: "%b %-d, %Y" }}</span>
|
|
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
{{ post.excerpt }}
|
|
{% endfor %}
|
|
|
|
</div>
|