Skip to content

Commit

Permalink
Gemfile update, and slight design update.
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazycatASG committed Jul 11, 2023
1 parent 5aeb4ae commit 918002f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 9 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ source "https://rubygems.org"
# gem "rails"

gem "jekyll", "~> 4.3"

gem "webrick", "~> 1.8"
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ PLATFORMS

DEPENDENCIES
jekyll (~> 4.3)
webrick (~> 1.8)

BUNDLED WITH
2.4.13
11 changes: 2 additions & 9 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,9 @@ title: "The Crazy Cafe!"
Welcome to The Crazy Cafe, AKA, Crazycat's personal website. This serves as my blog, and a lot of different purposes, including a whole (soon to be built) ARG contained within it :O
It's still unfinished, but so far pretty navigatable!

Here's my ramblings and other things (AKA my blog).

<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
Here's a bunch of things you might like:

[My random thoughts and ideas, AKA my blog](things_you_might_like\blog)

<a rel="me" href="https://mstdn.games/@enderasg">
<img src="assets\images\mastodon-logo-black.svg" alt="Mastodon" style="width:42px;height:42px;">
Expand Down
19 changes: 19 additions & 0 deletions things_you_might_like/blog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
title: My blog :D
---

# My blog is a place where I can ramble my long form thoughts into a markdown file then post it out for the world to see.
A lot of these posts come from random thoughts and ideas at 3am when I just physically cannot sleep or when I'm in the shower. You know, the usual.

<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>

<footer>
<h6><a href="/">Click here to go back.</a></h6>
</footer>

0 comments on commit 918002f

Please sign in to comment.