Skip to content

Commit

Permalink
Update home2.html
Browse files Browse the repository at this point in the history
  • Loading branch information
lucretiomsp authored Oct 30, 2024
1 parent 781a422 commit 406b0fa
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions _layouts/home2.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,42 @@
<h1> Music and Sounds with Pharo </h1>


<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}

{{ content }}


{% if site.paginate %}
{% assign posts = paginator.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}


{%- if posts.size > 0 -%}
{%- if page.list_title -%}
<h2 class="post-list-heading">{{ page.list_title }}</h2>
{%- endif -%}
<ul class="post-list">
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
{%- for post in posts -%}
<li>
<span class="post-meta">{{ post.date | date: date_format }}</span>
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{%- endif -%}
</li>
{%- endfor -%}
</ul>

<div class="sidebar">
<h2>Topics</h2>
<ul>
Expand Down

0 comments on commit 406b0fa

Please sign in to comment.