Testing artist listing on main page

This commit is contained in:
2021-10-22 22:17:27 +00:00
parent d81e7649b7
commit 0d458e0b52
3 changed files with 12 additions and 124 deletions

View File

@ -4,20 +4,11 @@ layout: default
<div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
{% for project in site.projects %}
<h2><a href="{{ project.url }}">
{{ project.title }}
</a></h2>
<p>{{ project.artist }}</p>
{% endfor %}
</div>