This is the official website for Associazione Atypical, built with Jekyll and hosted on GitHub Pages.
.
├── _posts/ # Blog posts and news articles
├── _layouts/ # Page layouts (handled by theme)
├── _includes/ # Reusable HTML components
├── assets/ # Images, CSS, and other assets
├── _config.yml # Jekyll configuration
├── index.md # Homepage
├── about.md # About page
├── events.md # Events page
├── contact.md # Contact page
├── Gemfile # Ruby dependencies
└── README.md # This file
- Ruby 2.7 or higher
- Bundler
- Clone this repository:
git clone https://github.com/your-username/giovami.git
cd giovami- Install dependencies:
bundle install- Build and serve locally:
bundle exec jekyll serveVisit http://localhost:4000 in your browser to see the site.
Create a new file in _posts/ with the naming convention YYYY-MM-DD-title.md:
---
layout: post
title: "Your Post Title"
date: 2026-05-14
categories: news
---
Your post content here...Place images in assets/images/ and reference them in your posts:
Edit the .md files directly (about.md, events.md, contact.md, etc.)
Edit _config.yml to customize:
- Site title and description
- Author information
- Navigation menu
- Theme settings
- Social media links
This site is automatically deployed to GitHub Pages when you push to the master branch.
Your site will be available at: https://your-username.github.io/giovami
Currently using the Minima theme. To use a different theme, update _config.yml:
theme: theme-namePopular alternatives:
- minimal
- cayman
- slate
- leap-day
For questions or issues, please contact us through the website contact page.
© 2026 Associazione Atypical. All rights reserved.