Getting Started

This page walks you through installing the theme and building your first page. ## Prerequisites - Jekyll 4.0+ - Ruby 2.7+ - Familiarity with YAML front matter ## Installation ### 1. Clone ```bash git clone https://github.com/ASISaga/theme.asisaga.com.git cd theme.asisaga.com ``` ### 2. Install dependencies ```bash bundle install ``` ### 3. Serve locally ```bash bundle exec jekyll serve ``` Open `http://localhost:4000`. ## Your first page Create a file with front matter specifying the layout: ```yaml --- layout: post title: "Hello World" --- ``` Write your content below the front matter block. The layout handles typography, spacing, and responsive behavior. ## Available layouts | Category | Layouts | |----------|---------| | Content | post, article, archive, profile | | Marketing | landing, gallery, form | | Knowledge | docs, faq | | Application | dashboard, chatroom, search, settings | | Utility | minimal, splash | ## Next steps - Read [Layout Basics](/docs/layout-basics) to understand the hierarchy - Browse [Components](/docs/components) for reusable includes - Check [Customization](/docs/customization) for token overrides