A Jekyll-based static website for Alexey Grigorev's developer profile.
- Jekyll (static site generator)
- HTML/CSS/JavaScript
- GitHub Pages compatible
- Ruby 2.7+ installed
- Bundler gem installed (
gem install bundler)
# Clone the repository
git clone <YOUR_GIT_URL>
cd <YOUR_PROJECT_NAME>
# Install dependencies
bundle install
# Start the development server
bundle exec jekyll serveThe site will be available at http://localhost:4000.
bundle exec jekyll buildThe built site will be in the _site directory.
This site can be deployed to GitHub Pages or any static hosting service.
- Push to the
mainbranch - Go to Settings > Pages
- Select "Deploy from a branch" and choose your branch
- The site will be available at
https://<username>.github.io/<repo-name>
├── _config.yml # Jekyll configuration
├── _layouts/ # Page templates
├── _includes/ # Reusable components
├── assets/
│ ├── css/ # Stylesheets
│ └── js/ # JavaScript files
├── public/ # Static assets (favicon, etc.)
├── index.html # Main page
├── Gemfile # Ruby dependencies
└── README.md