Rakefire / jekyll-ical-tag

Pull ICS feed and provide a for-like loop of calendar events in jekyll's liquid tag
7 stars 6 forks source link

Local scope, page variables, and refactor; oh my! #12

Closed rickychilcott closed 4 years ago

rickychilcott commented 4 years ago

Support many ways to set url for the ical tag

---
cal_url: "https://space.floern.com/launch.ics"
---

{% ical url: page.cal_url %}
  {{ event.summary }}
{% endical %}

{% assign url = "https://space.floern.com/launch.ics" %}
{% ical url: url %}
  {{ event.summary }}
{% endical %}

{% ical url: https://space.floern.com/launch.ics %}
  {{ event.summary }}
{% endical %}

Close @11; Thanks @meitar

Version 1.0.9 will be published soon

rickychilcott commented 4 years ago

Note @meitar I relaxed the jekyll version to support v3 and up. So you may be able to use the official gem.