imathis / octopress

Octopress is an obsessively designed framework for Jekyll blogging. It’s easy to configure and easy to deploy. Sweet huh?
http://github.com/imathis/octopress
9.32k stars 2.62k forks source link

Customizing Feed Titles in Linklog / Linked List #883

Open zharmany opened 11 years ago

zharmany commented 11 years ago

Hi there,

I've been experimenting with the linklog customization using the 2.1 branch of Octopress. From what I can tell, there's an error in source/_includes/feed_entry.xml to get the standard_post_marker to function correctly a la Gruber, where it shows up before the title of his post in the RSS feed.

To fix, I think all that you need to do is switch

{% if linklog and site.linklog_marker_position_feed == 'before' %}
{% unless linklog %}{{ site.standard_post_marker_feed }}{% endunless %}

to

{% unless linklog %}{{ site.standard_post_marker}}{% endunless %}
{% if linklog and site.linklog_marker_position_feed == 'before' %}

or else the 2nd line in the original can never execute.

Thanks for all the great work on Octopress. -Zac

imathis commented 11 years ago

Thanks for the heads up, I'll have a look.