From bec441fb57cc286f2f92fc9e7e17cba25ba07ee4 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Sun, 7 Apr 2024 10:15:39 -0700 Subject: [PATCH] feat: initial commit --- _cobalt.yml | 7 +++++ _includes/footer.liquid | 8 +++++ _includes/header.liquid | 2 ++ _layouts/article.liquid | 23 +++++++++++++++ _layouts/default.liquid | 21 +++++++++++++ index.md | 65 +++++++++++++++++++++++++++++++++++++++++ posts/post-1.md | 10 +++++++ stylesheet.sass | 44 ++++++++++++++++++++++++++++ 8 files changed, 180 insertions(+) create mode 100644 _cobalt.yml create mode 100644 _includes/footer.liquid create mode 100644 _includes/header.liquid create mode 100644 _layouts/article.liquid create mode 100644 _layouts/default.liquid create mode 100644 index.md create mode 100644 posts/post-1.md create mode 100644 stylesheet.sass diff --git a/_cobalt.yml b/_cobalt.yml new file mode 100644 index 0000000..7bf3e02 --- /dev/null +++ b/_cobalt.yml @@ -0,0 +1,7 @@ + +site: + title: cobalt blog + description: Blog Posts Go Here + base_url: http://example.com +posts: + rss: rss.xml diff --git a/_includes/footer.liquid b/_includes/footer.liquid new file mode 100644 index 0000000..f8a7975 --- /dev/null +++ b/_includes/footer.liquid @@ -0,0 +1,8 @@ +
+ \ No newline at end of file diff --git a/_includes/header.liquid b/_includes/header.liquid new file mode 100644 index 0000000..d666e3d --- /dev/null +++ b/_includes/header.liquid @@ -0,0 +1,2 @@ +

dork.dev - {{ page.title }}

+
\ No newline at end of file diff --git a/_layouts/article.liquid b/_layouts/article.liquid new file mode 100644 index 0000000..060f26c --- /dev/null +++ b/_layouts/article.liquid @@ -0,0 +1,23 @@ + + + + + dork.dev - {{ page.title }} + + + +
+
+ {% include "header.liquid" %} +
+
+
+ {{ page.content }} +
+
+
+ {% include "footer.liquid" %} +
+
+ + diff --git a/_layouts/default.liquid b/_layouts/default.liquid new file mode 100644 index 0000000..7888136 --- /dev/null +++ b/_layouts/default.liquid @@ -0,0 +1,21 @@ + + + + + dork.dev - {{ page.title }} + + + +
+
+ {% include "header.liquid" %} +
+
+ {{ page.content }} +
+
+ {% include "footer.liquid" %} +
+
+ + diff --git a/index.md b/index.md new file mode 100644 index 0000000..c77a9dc --- /dev/null +++ b/index.md @@ -0,0 +1,65 @@ +--- +layout: default.liquid +title: Home +--- + +
+ +## about + +Hi! I'm kat and I'm a dorky developer (meant affectionately, of course; I chose the dork life ^~^). + +My hobbies involve software development, system administration, infrastructure, smart home projects, hobbyist electronics, playing with SDR, reading books and manga, watching anime, cooking and baking. + +I am currently studying for an amateur radio qualification in Canada and I hope to eventually get a firearms possession and acquisition license and a first aid qualification.

+ +This website is not for talking about my professional life, but for credence; I am a DevOps engineer with two years of experience and I have a bachelors (at a first) in Digital Forensics and Cyber Security. + +
+ +
+ +## posts + + + +
+ +
+ +## projects + + + +
\ No newline at end of file diff --git a/posts/post-1.md b/posts/post-1.md new file mode 100644 index 0000000..8dc8797 --- /dev/null +++ b/posts/post-1.md @@ -0,0 +1,10 @@ +--- +layout: article.liquid + +title: Doing something with this domain! +is_draft: false +--- + +I've moved this website to use [cobalt](http://cobalt-org.github.io/)! Hopefully I should be making posts here, too. ^^ + +I have a few ideas for posts here, including talking about starting with using the RTL-SDR v4 and my experiences so far with the Framework 13 laptop. diff --git a/stylesheet.sass b/stylesheet.sass new file mode 100644 index 0000000..9f9afe6 --- /dev/null +++ b/stylesheet.sass @@ -0,0 +1,44 @@ +/* Let's keep it stupid, simple. ^^ */ + +* + /* Make CSS sizing sane */ + box-sizing: border-box + +html + font-family: "Monaspace Krypton", monospace + /* Make the main text not solid black */ + color: #333 + /* Let's not use solid white */ + background: #fcfcfc + +body + /* Make the body a 80 character wide container */ + width: 80ch + /* Center the container within the viewport */ + margin: 0 auto + /* Give the lines an adequate amount of room to breathe. */ + line-height: 1.4em + + +h1, h2, h3 + /* More contrast with the headers than the main text */ + color: #111 + + +/* We want the footer to be like two columns, where the right columns are also right-aligned and the columns grow to share the space sanely. */ + +footer nav ul + list-style-type: none + padding: 0 + margin: 0 + display: flex + flex-wrap: wrap + column-count: 2 + gap: 0.5em 0.25em + li + display: inline-block + padding: 0 + margin: 0 + flex-grow: 1 + &:nth-child(2) + text-align: right