Skip to content

A nicely designed HTML/JS/Jekyll calendar for (categorized, repetitive) events.

License

Notifications You must be signed in to change notification settings

abzicht/jekyll-calendar

Repository files navigation

Jekyll Calendar

For a live example, head here

HTML and JavaScript calendar for Jekyll based calendar entries.

All Jekyll related data is located in _data/calendar.

Entries

All entries are stored in _data/calendar/entries.yml.

Exemplary entry:

- id: "a"
  name: "Rhoncus"
  description: "Eni sagittis lacinia lectus primis. Elit iaculis hendrerit sapien elementum ultrices augue. Fusce suspendisse ultrices nunc. Potenti, scelerisque cras duis volutpat vulputate eros cras. Congue aliquam gravida lectus neque sed. Proin. Penatibus donec quam facilisi nascetur dolor praesent id, auctor pretium eros quam nibh. Luctus nullam maecenas suspendisse mus. Rutrum eros id lorem aenean elit, condimentum. Sollicitudin in, donec dictumst enim, nec duis. Ac dictum lacus commodo nam suscipit aliquam, consectetuer auctor velit. Aliquet amet, dis sapien quisque, egestas quis a. Nec in quis. Cras nec gravida."
  category: "election"
  singular: false
  date: "0000-01-01"

If an event is marked singular, it only appears in the year it is created for. If it is not singular, it appears in each year.

Notice: If multiple events are created for the same month and day, use unique ids!

For each unique category, a category entry must be created in _data/calendar/categories.yml. The category id must match the id used by the entries. The color tag is utilized to color the calendar entries of the corresponding category.

- id: birthday
  name: Geburtstag
  color: "#0000ee"

The calendar entries can be filtered by category.

Setup

Copy directories _data, _includes, css, and js to your Jekyll project.

Write

{% include calendar.html %}
{% include calendar_categories.html %}

in the file you want to include the calendar in.

Add

<script src="/js/calendarbase.esm.js"></script>
<script src="/js/calendar-entries.js"></script>
<script defer src="/js/calendar-shell.js"></script>
<script defer src="/js/calendar-init.js"></script>

to the bottom of the file you included the calendar at.

Sources

About

A nicely designed HTML/JS/Jekyll calendar for (categorized, repetitive) events.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published