# jekyll-site-config **Repository Path**: mirrors_codejamninja/jekyll-site-config ## Basic Information - **Project Name**: jekyll-site-config - **Description**: Add custom data to Jekyll site object - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Jekyll Site Config Add custom data to Jekyll site object ![](assets/jekyll-site-config.png) ## Usage ```sh gem "jekyll-site-config" ``` ```rb require "jekyll-site-config" ``` ```rb JekyllSiteConfig.set_config("hello", { "world" => "Hello, world", "texas" => "Howdy, Texas" }) ``` ```md --- layout: post title: "Welcome to Jekyll!" date: 2018-01-08 20:25:28 -0600 categories: jekyll update --- {{ site.hello.world }} {{ site.hello.texas }} ```