Welcome to my personal portfolio website. This site showcases my projects, blog posts, and other professional activities.
git clone https://github.com/pro-utkarshM/blogs.git
cd blogs
bundle install
To start a local server and view the website:
bundle exec jekyll serve
Open your browser and navigate to http://localhost:4000
to see the website.
To build the site for production:
bundle exec jekyll build
The output will be in the _site
directory.
.
├── 404.html
├── about.md
├── atom.xml
├── commit.sh
├── _config.yml
├── Gemfile
├── Gemfile.lock
├── index.html
├── LICENSE
├── _posts
│ ├── 2023-12-31-networking.md
│ ├── 2024-02-11-Kernel-1.1.md
│ ├── .
│ ├── .
│ ├── .
│ ├── 2024-06-03-VLANs
│ └── _site
│ ├── 2024-02-11-Kernel-1.1.html
│ ├── .
│ ├── .
│ ├── .
│ └── 2024-05-22-snake-game.html
Ã
6C21
”€â”€ public
│ ├── avatar.jpg
│ └── media
│ ├── Network-design-01.png
│ ├── Network-design-02.png
│ ├── Network-design-03.png
│ ├── role-of-kernel.png
│ ├── terminal.png
│ └── thread_info_stack.png
├── README.md
└── _site
39 directories, 121 files
- Navigation: Update
_config.yml
to modify navigation links. - Styling: Customize CSS files in the
assets/css
directory to change the look and feel of the website. - Content: Update markdown files in the
_posts
directory to add your own blog posts. - Images: Replace images in the
public/media
directory with your own. - Favicon: Replace
favicon.png
in theassets
directory with your own favicon.
If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/improvement
). - Make your changes.
- Commit your changes (
git commit -am 'Add new feature'
). - Push to the branch (
git push origin feature/improvement
). - Create a new Pull Request.
Feel free to reach out if you have any questions or suggestions!