---
layout: default
title: "Categories"
categories: [Project pages]
description: "Index of all content categories on sunilabraham.in, including Videos, Books, Biographies, and more."
permalink: /categories/
created: 2025-10-31
---
This section serves as a directory of all content categories published on sunilabraham.in. Browse through collections of videos, books, biographies, and project pages to explore related material and archived work.
All Categories
{% assign all_categories = "" | split: "" %}
{% for page in site.pages %}
{% if page.categories %}
{% for cat in page.categories %}
{% unless all_categories contains cat %}
{% assign all_categories = all_categories | push: cat %}
{% endunless %}
{% endfor %}
{% endif %}
{% endfor %}
{% comment %}
Build correct links: slugify the category name first, then append to '/categories/'.
{% endcomment %}
{% for cat in all_categories %}
{% assign cat_slug = cat | slugify %}
-
{{ cat }}
({{ site.pages | where_exp: "p", "p.categories contains cat" | size }} pages)
{% endfor %}