|
1 | 1 | --- |
2 | 2 | title: "Jekyll" |
| 3 | +description: Making a website with Jekyll, Chirpy, and GitHub (Using a Youtube guide from Techno Tim) |
3 | 4 | date: 2025-03-14 10:03:00 CST |
4 | 5 | layout: post |
5 | 6 | categories: [homelab, website] |
@@ -65,10 +66,35 @@ Once you get it up and running, I guess all these Tech guys just know things int |
65 | 66 | > - Static files or content like tabs might go in `_tabs` |
66 | 67 |
|
67 | 68 |
|
| 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 | + |
68 | 94 | --- |
69 | 95 | --- |
70 | 96 |
|
71 | | -# Push To Github - get it online in the real world |
| 97 | +# Push To Github - Get it online, in the real world! |
72 | 98 | - `git status` Should show nothing at first, but could show pending changes. |
73 | 99 | - `git add .` (Don't forget the period) |
74 | 100 | - `git status` will show green now. |
|
0 commit comments