---
layout: default
title: "Events in 2026"
description: "Events organised and participated in by Sunil Abraham in 2026."
categories: [Events]
permalink: /events/2026/
created: 2026-03-23
---
**Events in 2026** lists events organised and participated in by [Sunil Abraham](/sunil/) during the year.
{% assign count = 0 %}
{% for post in site.pages %}
{% if post.categories contains "Events participated" or post.categories contains "Events organised" %}
{% if post.date %}
{% assign d = post.date | date: "%Y-%m-%d" %}
{% if d >= "2026-01-01" and d <= "2026-12-31" %}
{% assign count = count | plus: 1 %}
- {{ post.title }} ({{ post.date | date: "%d %b %Y" }})
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{% if count == 0 %}
- No events recorded for 2026 yet.
{% endif %}