diff --git a/_config.yml b/_config.yml index bcb1be4..add61bb 100644 --- a/_config.yml +++ b/_config.yml @@ -18,7 +18,7 @@ defaults: path: "_posts/blog" type: posts values: - permalink: blog/:year/:month/:day/:title/ + permalink: blog/:year/:title/ layout: post # til - scope: @@ -33,7 +33,7 @@ defaults: path: "_posts/weeklinks" type: posts values: - permalink: blog/:year/:month/:day/:title/ + permalink: weeklinks/:title/ category: weeklinks layout: post diff --git a/_includes/defaultFooter.html b/_includes/defaultFooter.html index 14a3ce0..77dda75 100644 --- a/_includes/defaultFooter.html +++ b/_includes/defaultFooter.html @@ -1,8 +1,8 @@
- + Made with 💕 (and Jekyll)
© Andrew Conlin 2023-2024
All rights reverse engineered -
+
diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..50f3660 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,6 @@ +

andrewconl.in

+
+ blog // weeklinks // til // projects // meta +
+
+
\ No newline at end of file diff --git a/_includes/postFooter.html b/_includes/postFooter.html index beb15e1..417b4ce 100644 --- a/_includes/postFooter.html +++ b/_includes/postFooter.html @@ -1,4 +1,4 @@

-Issues or comments? Email me! +Issues or comments? Email me!
diff --git a/_layouts/default.html b/_layouts/default.html index 239807f..0073cc3 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -19,14 +19,8 @@
-
- {% if page.backlink == true %} - <-- back - {% endif %} -

- {{ page.title }} -

- {{ page.subtitle }} +
+ {% include header.html %} {{ content }} {% include defaultFooter.html %}
diff --git a/_layouts/post.html b/_layouts/post.html index 2bb3e04..3e112ac 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,11 +1,12 @@ --- layout: default --- + +~ > {{page.category}} > {{page.title}}
-

- Posted {{ page.date | date_to_string }} to Andrew Conlin's blog
- Reading time: {{ content | reading_time | pluralize: "minute" }} -

+ {{ page.date | date: "%Y-%m-%d" }}
+ {{ content | reading_time | pluralize: "minute" }} +

{{ content }} diff --git a/_posts/weeklinks/2023-12-03-weeklinks-001.md b/_posts/weeklinks/2023-12-03-001.md similarity index 98% rename from _posts/weeklinks/2023-12-03-weeklinks-001.md rename to _posts/weeklinks/2023-12-03-001.md index 069cdad..511f6dd 100644 --- a/_posts/weeklinks/2023-12-03-weeklinks-001.md +++ b/_posts/weeklinks/2023-12-03-001.md @@ -1,5 +1,5 @@ --- -title: Weeklinks 001 - Philosophy, grief and macaques +title: 001 - Philosophy, grief and macaques category: weeklinks layout: post --- diff --git a/_posts/weeklinks/2023-12-10-weeklinks-002.md b/_posts/weeklinks/2023-12-10-002.md similarity index 97% rename from _posts/weeklinks/2023-12-10-weeklinks-002.md rename to _posts/weeklinks/2023-12-10-002.md index c0312ba..9c0bec8 100644 --- a/_posts/weeklinks/2023-12-10-weeklinks-002.md +++ b/_posts/weeklinks/2023-12-10-002.md @@ -1,5 +1,5 @@ --- -title: Weeklinks 002 - Trains, iPods and plagiarism +title: 002 - Trains, iPods and plagiarism category: weeklinks layout: post --- diff --git a/_posts/weeklinks/2023-12-18-weeklinks-003.md b/_posts/weeklinks/2023-12-18-003.md similarity index 98% rename from _posts/weeklinks/2023-12-18-weeklinks-003.md rename to _posts/weeklinks/2023-12-18-003.md index 4a79f64..e8b1c3f 100644 --- a/_posts/weeklinks/2023-12-18-weeklinks-003.md +++ b/_posts/weeklinks/2023-12-18-003.md @@ -1,5 +1,5 @@ --- -title: Weeklinks 003 - Bryan, Cory and Mickey +title: 003 - Bryan, Cory and Mickey category: weeklinks layout: post --- diff --git a/_posts/weeklinks/2024-01-09-weeklinks-004.md b/_posts/weeklinks/2024-01-09-004.md similarity index 98% rename from _posts/weeklinks/2024-01-09-weeklinks-004.md rename to _posts/weeklinks/2024-01-09-004.md index a08a13c..2d14a22 100644 --- a/_posts/weeklinks/2024-01-09-weeklinks-004.md +++ b/_posts/weeklinks/2024-01-09-004.md @@ -1,5 +1,5 @@ --- -title: Weeklinks 004 - Obfuscation, dial-up and tiny chess +title: 004 - Obfuscation, dial-up and tiny chess category: weeklinks layout: post --- diff --git a/_posts/weeklinks/2024-01-29-weeklinks-005.md b/_posts/weeklinks/2024-01-29-005.md similarity index 98% rename from _posts/weeklinks/2024-01-29-weeklinks-005.md rename to _posts/weeklinks/2024-01-29-005.md index 24f2b18..9e36165 100644 --- a/_posts/weeklinks/2024-01-29-weeklinks-005.md +++ b/_posts/weeklinks/2024-01-29-005.md @@ -1,5 +1,5 @@ --- -title: Weeklinks 005 - ccTLDs, BBC Basic and 6174 +title: 005 - ccTLDs, BBC Basic and 6174 category: weeklinks layout: post --- diff --git a/assets/css/default.css b/assets/css/default.css index 2757733..06da530 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -1,5 +1,5 @@ body { - font-family: Arial, Helvetica, sans-serif; + font-family: monospace; } div.container { @@ -7,7 +7,7 @@ div.container { } div.content { - width: 40%; + width: 50%; height: auto; margin: 0 auto; position: relative; @@ -41,10 +41,26 @@ div.content { } body { - background-color: #1a1b26; - color: #a9b1d6; + background-color: #ffffff; + color: #000000; } -a { - color: #9ece6a; +pre { + background-color:antiquewhite; + padding: 10px 10px 10px 10px; + border-radius: 10px; + white-space: pre-wrap; + white-space: pre-wrap; } + +hr { + border: 2px dashed #000000; + border-style: none none dashed; + color: transparent; + background-color: transparent; +} + +img { + max-width:100%; + max-height:100%; +} \ No newline at end of file diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..434d6cf --- /dev/null +++ b/blog.html @@ -0,0 +1,19 @@ +--- +layout: default +title: blog +permalink: /blog +backlink: false +--- + +

Posts

+ +
\ No newline at end of file diff --git a/index.html b/index.html index a365adc..806c338 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,9 @@ --- layout: default -title: Andrew Conlin's blog +title: andrewconl.in permalink: / backlink: false --- - - This site is designed to be kept as simple as possible.
It is pure HTML/CSS [*], which keeps things small, fast and accessible.
* I use a self-hosted instance of umami for analytics. It respects do-not-track signals.
@@ -14,41 +12,5 @@ email: andrew@andrewconl.in
masto: andrwcnln@mastodon.scot
github: @andrwcnln
--
-rss
-
-
-

Posts

- -
-

Weeklinks

- -
-

TIL

- +rss
+
\ No newline at end of file diff --git a/til.html b/til.html new file mode 100644 index 0000000..efa98fb --- /dev/null +++ b/til.html @@ -0,0 +1,18 @@ +--- +layout: default +title: til +permalink: /til +backlink: false +--- +

TIL

+ +
\ No newline at end of file diff --git a/weeklinks.html b/weeklinks.html new file mode 100644 index 0000000..6b28206 --- /dev/null +++ b/weeklinks.html @@ -0,0 +1,19 @@ +--- +layout: default +title: weeklinks +permalink: /weeklinks +backlink: false +--- + +

Weeklinks

+ +
\ No newline at end of file