https://github.com/plugarut/plugarut.github.io
https://github.com/plugarut/plugarut.github.io
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/plugarut/plugarut.github.io
- Owner: PlugaruT
- Created: 2024-01-10T19:32:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-26T12:08:43.000Z (10 months ago)
- Last Synced: 2025-08-26T12:10:15.706Z (10 months ago)
- Language: SCSS
- Homepage: https://plugarut.github.io/
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal Profile Site
A minimalist Jekyll-based personal profile website with About and Resume sections.
## Prerequisites
- Ruby 2.7.0 or higher
- Bundler gem (`gem install bundler`)
## Installation & Setup
1. **Clone the repository:**
```bash
git clone
cd about-me
```
2. **Install dependencies:**
```bash
bundle install
```
## Running the Site
### Development Server
```bash
bundle exec jekyll serve
```
The site will be available at `http://localhost:4000`
### Build for Production
```bash
bundle exec jekyll build
```
The static site will be generated in the `_site` directory.
## Configuration
Edit `_config.yml` to customize:
- Personal information (name, bio, location)
- Social media links
- Work experience
- Education details
- Theme colors
## Project Structure
```
├── _config.yml # Site configuration
├── _layouts/ # Page layouts
│ └── default.html # Default HTML template
├── _site/ # Generated site (git ignored)
├── assets/
│ ├── css/
│ │ └── main.scss # Main stylesheet
│ └── images/
│ └── profile.jpg # Profile photo
├── index.html # Homepage with About/Resume views
├── Gemfile # Ruby dependencies
└── README.md # This file
```
## License
MIT