https://github.com/jlpdeveloper/jlpdeveloper.github.io
https://github.com/jlpdeveloper/jlpdeveloper.github.io
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jlpdeveloper/jlpdeveloper.github.io
- Owner: jlpdeveloper
- Created: 2024-12-21T18:27:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-18T01:12:00.000Z (6 months ago)
- Last Synced: 2025-12-21T11:40:46.880Z (6 months ago)
- Language: HTML
- Size: 4.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Blog Site
## Hugo Instructions
To create a new post use the command
```bash
hugo new posts/my-new-post.md
```
Then paste the content of your post into under the metadata header of the resulting file. Next add a `categories` and a `tags` element to the metadata. Set `draft` to false. You will end up with a header that looks like:
```
+++
date = '2025-02-19T19:42:59-06:00'
draft = false
title = 'My New Post'
categories = ["programming"]
tags = ["tag1", "tag2"]
+++
```
To run the hugo server locally, use the `serve.ps1` script. This will delete the public folder and call `hugo serve` to refresh the data.