A Hugo-powered website showcasing software development projects and technical articles.
This is the source code for loresoft.com, a personal website featuring blog posts about software development, open source projects, and technical tutorials.
- Hugo - Static site generator
- Custom theme and layouts
- Markdown content
-
Clone the repository:
git clone https://github.com/username/loresoft.com.git cd loresoft.com -
Start the development server:
hugo server -D
-
Open your browser and navigate to
http://localhost:1313
├── archetypes/ # Content templates
├── content/ # Markdown content files
│ ├── post/ # Blog posts
│ └── *.md # Static pages
├── data/ # Data files
├── layouts/ # HTML templates
│ ├── _partials/ # Partial templates
│ └── post/ # Post-specific layouts
├── static/ # Static assets
│ ├── css/ # Stylesheets
│ ├── js/ # JavaScript files
│ └── images/ # Images and media
└── hugo.toml # Hugo configuration
Create a new blog post:
hugo new post/my-new-post.mdCreate a new page:
hugo new about.mdGenerate the static site:
hugoThe generated site will be in the public/ directory.
The site features articles on:
- .NET development
- Open source projects
- Software architecture
- Development tools and frameworks
- Technical tutorials
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.