Skip to content

Commit 64c5314

Browse files
committed
tags categories TOC
1 parent 1c73f89 commit 64c5314

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

_posts/2025-03-14-Jecyll The Static Site Generator.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
title: "Jekyll"
33
date: 2025-03-14 10:03:00 CST
44
layout: post
5-
categories: [web, resume]
5+
categories: [homelab, website]
66
tags: [jekyll, chirpy, github, docker, static site generator] # Tag names should always be lowercase
77
permalink: /jekyll/
88
pin: true
9+
toc: true
910
---
1011

11-
# The Jekyll Project
12+
# The Jekyll Project -
1213

1314
I wanted to create a website to showcase my resume and highlight some fun projects I've worked on. Techno Tim is one of my favorite YouTubers and tech enthusiasts, and he runs an awesome Discord. Naturally, I decided to follow his approach.
1415

@@ -24,17 +25,19 @@ Here are Jekyll installation notes: [Jekyll - Installation](https://jekyllrb.com
2425

2526
Here are Chirpy Notes: [Chirpy - Getting Started](https://chirpy.cotes.page/posts/getting-started/)
2627

28+
# Viewing the site Internally
2729

28-
## 1. The first issue I encountered was getting the local site running. I was using a VM on Proxmox and tried accessing it:
30+
### 1. The first issue I encountered was getting the local site running. I was using a VM on Proxmox and tried accessing it:
2931
- Via the VM IP + Port (e.g. `192.168.10.55:4000`) *did not work*
3032
- `localhost:4000` *did not work*
3133
- In the short term, **`http://127.0.0.1:4000`** worked. (But I did not think to try it for some time. I mistakingly thought localhost and 127.0.0.1 were the same, andthey are not. Seems easy now, but it took me a while before i realized. 😖 )
3234

33-
## 2. I got it working using VS Code.
35+
### 2. I got it working using VS Code.
3436
**If you are using Dev Containers, run the command in the VS Code Terminal.**
3537
[Chirpy Getting Started](https://chirpy.cotes.page/posts/getting-started/)
3638
(Look for the command highlighted in blue further down the page.)
37-
## 3. Additionally, add the following to the top of your `_config.yml` (My favorite solution!):
39+
40+
### 3. Additionally, add the following to the top of your `_config.yml` (My favorite solution!):
3841
```yml
3942
# Server settings
4043
host: 192.168.1.55
@@ -55,7 +58,7 @@ Once you get it up and running, I guess all these Tech guys just know things int
5558

5659
**For a new post**: Put the markdown file under `_posts/` with the correct filename format (`YEAR-MONTH-DAY-title.md`). It will then be generated into the `_site/posts` folder.
5760

58-
> ### To summarize:
61+
# To summarize:
5962
>
6063
> - **Do Not** manually put new files in `_site`.
6164
> - Place new posts in `_posts` With the date in the file name, properly formatted.
@@ -65,7 +68,7 @@ Once you get it up and running, I guess all these Tech guys just know things int
6568
---
6669
---
6770

68-
## PUSH TO GITHUB
71+
# Push To Github - get it online in the real world
6972
- `git status` Should show nothing at first, but could show pending changes.
7073
- `git add .` (Don't forget the period)
7174
- `git status` will show green now.

0 commit comments

Comments
 (0)