-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Because789
committed
Nov 13, 2023
1 parent
bde8189
commit 1105d68
Showing
4 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ baseurl: "" # place folder name if the site is served i | |
|
||
title: "A blog by Because789" | ||
description: "Random thoughts of a confused mind." | ||
author: | ||
name: "Because789" | ||
email: "[email protected]" | ||
# author: | ||
# name: "Because789" | ||
# email: "[email protected]" | ||
|
||
exclude: ['README.md'] | ||
|
||
|
@@ -15,7 +15,8 @@ minima: | |
skin: dark | ||
date_format: "%d. %b %Y" | ||
header_pages: | ||
- static/about.md | ||
- categories.md | ||
- about.md | ||
# Generate social links in footer: | ||
social_links: | ||
- { platform: github, user_url: "https://github.com/Because789" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
--- | ||
layout: post | ||
title: "Test" | ||
categories: test | ||
tags: ["test"] | ||
categories: Test | ||
# published: false | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
layout: post | ||
title: "Test 1" | ||
categories: [Test, Whatever] | ||
# published: false | ||
--- | ||
|
||
# My second post | ||
|
||
**Hello world**, this is my first Jekyll blog post. | ||
|
||
I hope you like it! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
layout: page | ||
permalink: /categories/ | ||
title: Categories | ||
--- | ||
|
||
<div id="archives"> | ||
{% for category in site.categories %} | ||
<div class="archive-group"> | ||
{% capture category_name %}{{ category | first }}{% endcapture %} | ||
<div id="#{{ category_name | slugize }}"></div> | ||
<p></p> | ||
|
||
<h3 class="category-head">{{ category_name }}</h3> | ||
<a name="{{ category_name | slugize }}"></a> | ||
{% for post in site.categories[category_name] %} | ||
<article class="archive-item"> | ||
<h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4> | ||
</article> | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</div> |