al_ext_posts imports and renders external posts for al-folio v1.x and compatible Jekyll sites.
gem 'al_ext_posts'plugins:
- al_ext_postsConfigure external sources in _config.yml:
external_sources:
- name: "My Blog"
rss_url: "https://myblog.com/feed.xml"
categories: ["external", "blog"]
tags: ["rss", "updates"]
- name: "Another Source"
categories: ["external"]
tags: ["manual-curation"]
posts:
- url: "https://example.com/post1"
published_date: "2024-03-20"
- url: "https://example.com/post2"
published_date: "2024-03-21"Supported source types:
- RSS feeds (
rss_url) - Manual URL entries (
postswithurl+published_date)
- Starter demo content/wiring lives in
al-folio. - External post ingestion logic is owned here.
Parser/source behavior changes should be contributed in this repository.