Skip to content

Commit

Permalink
Update feed_by.html
Browse files Browse the repository at this point in the history
  • Loading branch information
xchopath authored Sep 4, 2023
1 parent 640dbff commit afc467d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions assets/feed_by.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
---
layout: compress
permalink: /feed_by.html
permalink: /feed/author/:name
---

{% assign posts_by_author = site.posts | where:"author", page.url.params.author %}
{% for post in posts_by_author %}
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link>{{ post.url | relative_url }}</link>
</entry>
{% endfor %}

{{ page.url.params.author }}
{{ page.url }}

{% assign posts_by_author = site.posts | where:"author", page.url.params.author %}

0 comments on commit afc467d

Please sign in to comment.