Skip to content

Commit 26a1d98

Browse files
committed
tags categories formatting
1 parent 64c5314 commit 26a1d98

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Jekyll"
3+
description: Making a website with Jekyll, Chirpy, and GitHub (Using a Youtube guide from Techno Tim)
34
date: 2025-03-14 10:03:00 CST
45
layout: post
56
categories: [homelab, website]
@@ -65,10 +66,35 @@ Once you get it up and running, I guess all these Tech guys just know things int
6566
> - Static files or content like tabs might go in `_tabs`
6667

6768

69+
# Tags and Categories
70+
If you are using Chirpy, you need to figure out Tags and Categories. They will go in the heading syntax, in yaml format. I will paste mine here without the lines "-" so you can see how it looks.
71+
72+
```yaml
73+
title: "Jekyll"
74+
description: Making a website with Jekyll, Chirpy, and GitHub (Using a youtube guide from Techno Tim)
75+
date: 2025-03-14 10:03:00 CST
76+
layout: post
77+
categories: [homelab, website]
78+
tags: [jekyll, chirpy, github, docker, static site generator] # Tag names should always be lowercase
79+
permalink: /jekyll/
80+
pin: true
81+
toc: true
82+
83+
```
84+
Techno Tim talks in his video about this. Chekc that out. Says some important things, like lower case. I am continuing that and explaining more about `tags` and `categories` *What do they do?"* 😕 On the website on the left, there are sections labeled *tags* and *categories* if you do this right, your tags and acetegories will show up there.
85+
- `categories` are like a file folder sytem. My main category in this instance is "homelab" and my subfolder is "website." If I do other projects that are "homelab" they will go there, but if the second tag on the next project is them "kuberneties" then there will b a new sub folder there. Check out my Categories section, if you want to see.
86+
- `tags` are just that, and you can have a lot of them. These are all going to be clustered on that page.
87+
Lookat the above, and look at my site, hopefully this makes sense. Hopefully I have helped explain, becasue I did not understand before.
88+
Here is the wiki on it, but it did not help me understand. `tags` and `categories` are very much the same, but yet very different. :smile:
89+
90+
>>>>[Chirpy Wiki - Writing a New Post](https://chirpy.cotes.page/posts/write-a-new-post)
91+
92+
93+
6894
---
6995
---
7096

71-
# Push To Github - get it online in the real world
97+
# Push To Github - Get it online, in the real world!
7298
- `git status` Should show nothing at first, but could show pending changes.
7399
- `git add .` (Don't forget the period)
74100
- `git status` will show green now.

0 commit comments

Comments
 (0)