How to get blog post which is start from second blog post and first should be hide
SOLVE
Hi there!
In my site's home page the last blog post should appear as a main post (larger in size) followed by an RSS listing of the last 3 blog posts. I don't want to have the latest post appear as the main post and then again at the beginning of the RSS feed. It seems this post is related to this, but I don't know where I should include that code. This is the RSS listing code:
{% if module.rss_feed_type == "external" %} {% set feed_source = "{is_external=True, rss_url='"~module.rss_url~"', content_group_id=''}" %} {% set is_external = true %} {% elif module.rss_feed_type == "blog" %} {% set feed_source = "{is_external=False, content_group_id='" ~ module.content_group_id ~ "', rss_url=''}" %} {% set is_external = false %} {% endif %}