VSPBlog

Volodymyr’s Personal Website

This repository contains the source code for my personal website built with Hugo, a fast and modern static site generator.

Overview

This website showcases my skills, projects, and interests as an Electrical Engineering student. It features a clean, responsive design and is hosted on GitHub Pages.

Features

Technology Stack

Local Development

To run this website locally:

  1. Install Hugo:
    # macOS with Homebrew
    brew install hugo
       
    # Windows with Chocolatey
    choco install hugo -confirm
       
    # Linux
    sudo apt-get install hugo
    
  2. Clone the repository:
    git clone https://github.com/volodymyr/volodymyr.github.io.git
    cd volodymyr.github.io
    
  3. Run the development server:
    hugo server -D
    
  4. View the site: Open your browser to http://localhost:1313

Deployment

The website is automatically deployed to GitHub Pages when changes are pushed to the main branch, using a GitHub Actions workflow defined in .github/workflows/hugo.yml.

Content Management

All content is written in Markdown and stored in the content/ directory:

Images are stored in the static/images/ directory.

Customization

To customize this site:

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements