Skip to content

Commit

Permalink
Add blog
Browse files Browse the repository at this point in the history
  • Loading branch information
davideme committed Feb 7, 2024
1 parent 2e3c002 commit 7fe1ec2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions _posts/2024-02-07-list comprehension.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: post
author: davideme
---

A banana is an edible fruit – botanically a berry – produced by several
kinds of large herbaceous flowering plants in the genus Musa.

In some countries, bananas used for cooking may be called "plantains",
distinguishing them from dessert bananas. The fruit is variable in size,
color, and firmness, but is usually elongated and curved, with soft
flesh rich in starch covered with a rind, which may be green, yellow,
red, purple, or brown when ripe.
14 changes: 14 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
layout: default
title: Blog
---
<h1>Latest Posts</h1>

<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>

0 comments on commit 7fe1ec2

Please sign in to comment.