Skip to content

Commit

Permalink
Add changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Chiong committed Apr 18, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent c04683c commit 361937f
Showing 2 changed files with 20 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -7,3 +7,4 @@ _site
.jekyll-metadata
vendor
_notebooks/.ipynb_checkpoints
Gemfile.lock
27 changes: 19 additions & 8 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
{:refdef: style="text-align: center;"}
![Welcome banner](images/welcome-banner-1.gif)

{: refdef}

And you can include links, like this [link to fast.ai](https://www.fast.ai). Posts will appear after this file.

<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<h1 class="col-header dark-orange">All posts</h1>
{% for post in site.posts %}
<div class="post-preview">
<img class="post-preview__left" src="{{ post.image }}" alt="{{ page.image_alt }}">
<div class="post-preview__right">
<a class="preview-title" href="{{ post.url }}">{{ post.title }}</a>
<span>{{ post.date | date: "%b %d, %Y" }}</span>
{{post.excerpt}}
<div class="tag-group">
{% for tag in post.tags %}
<div class="tag"><span class="tag-text">{{ tag }}</span></div>
{% endfor %}
</div>
</div>
</div>

{% endfor %}

0 comments on commit 361937f

Please sign in to comment.