https://github.com/sebkrantz/blog
Personal blog (simplified Hugo Blog Awesome)
https://github.com/sebkrantz/blog
Last synced: 3 months ago
JSON representation
Personal blog (simplified Hugo Blog Awesome)
- Host: GitHub
- URL: https://github.com/sebkrantz/blog
- Owner: SebKrantz
- Created: 2025-09-02T18:35:32.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-06T04:13:09.000Z (8 months ago)
- Last Synced: 2026-02-04T13:30:24.022Z (4 months ago)
- Language: Python
- Homepage: https://sebkrantz.github.io/blog/
- Size: 500 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Awesome Blog
A personal blog built with [Hugo](https://gohugo.io/) and the [Hugo Blog Awesome](https://github.com/hugo-sid/hugo-blog-awesome) theme.
## Features
- 🚀 Fast static site generation with Hugo
- 📱 Responsive design with the Blog Awesome theme
- 🔍 Built-in search functionality
- 📝 Markdown-based content management
- 🎨 Customizable appearance and features
- 📊 Reading time and word count
- 🔗 Social media integration
## Getting Started
### Prerequisites
- [Hugo](https://gohugo.io/installation/) (Extended version recommended)
- Git
### Installation
1. Clone this repository:
```bash
git clone
cd blog
```
2. Install the theme (if not already done):
```bash
git submodule update --init --recursive
```
3. Start the development server:
```bash
hugo server -D
```
4. Open your browser and visit `https://sebkrantz.github.io`
### Creating Content
- **New blog post:**
```bash
hugo new content posts/my-new-post.md
```
- **New page:**
```bash
hugo new content my-new-page.md
```
### Building for Production
```bash
hugo
```
The generated site will be in the `public/` directory.
## Configuration
Edit `hugo.toml` to customize:
- Site title and description
- Author information
- Social media links
- Theme features and appearance
- Navigation settings
## Theme Features
The Hugo Blog Awesome theme includes:
- Dark/light mode toggle
- Code syntax highlighting
- Math equation support (KaTeX)
- Mermaid diagram support
- Table of contents
- Related posts
- Social sharing buttons
- Search functionality
- Reading progress indicator
## Deployment
This site can be deployed to various platforms:
- **Netlify**: Connect your Git repository for automatic deployments
- **Vercel**: Deploy with zero configuration
- **GitHub Pages**: Use GitHub Actions for automated builds
- **Any static hosting**: Upload the `public/` folder contents
## License
This project is open source and available under the [MIT License](LICENSE).
## Contributing
Feel free to submit issues and enhancement requests!