From bd3eb288d683637cbcc2258ceb1cb3c8681e3951 Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Fri, 21 Mar 2025 17:11:15 -0400 Subject: [PATCH] shit's finally working --- blog/content/blog/_index.md | 3 ++- blog/content/projects/_index.md | 9 ++------- .../projects/vaxandi_forritari/_index.md | 6 ++++++ .../projects/vaxandi_forritari/testing/index.md | 7 +++++++ blog/sass/colours.scss | 1 + blog/sass/style.scss | 6 +++++- blog/templates/base.html | 1 + blog/templates/projects-landing.html | 17 +++++++++++++++++ blog/templates/projects-page.html | 9 +++++++++ blog/templates/projects.html | 16 ++++++++++++++++ 10 files changed, 66 insertions(+), 9 deletions(-) create mode 100644 blog/content/projects/vaxandi_forritari/_index.md create mode 100644 blog/content/projects/vaxandi_forritari/testing/index.md create mode 100644 blog/templates/projects-landing.html create mode 100644 blog/templates/projects-page.html create mode 100644 blog/templates/projects.html diff --git a/blog/content/blog/_index.md b/blog/content/blog/_index.md index 72bc989..92826dc 100644 --- a/blog/content/blog/_index.md +++ b/blog/content/blog/_index.md @@ -1,6 +1,7 @@ +++ -title = "List of blog posts" +title = "Blog Posts" sort_by = "date" template = "blog.html" page_template = "blog-page.html" +++ +here diff --git a/blog/content/projects/_index.md b/blog/content/projects/_index.md index 18415d4..fb05819 100644 --- a/blog/content/projects/_index.md +++ b/blog/content/projects/_index.md @@ -1,10 +1,5 @@ +++ -template = "index.html" +template = "projects-landing.html" title = "Projects" +++ -## Something. - -### Something something. -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - +This is where you'll find my projects. They're split into different categories, for my different interests. diff --git a/blog/content/projects/vaxandi_forritari/_index.md b/blog/content/projects/vaxandi_forritari/_index.md new file mode 100644 index 0000000..75fb2f9 --- /dev/null +++ b/blog/content/projects/vaxandi_forritari/_index.md @@ -0,0 +1,6 @@ ++++ +template = "projects.html" +title = "Vaxandi Forritari" ++++ +Vaxandi forritari means *growing developer* in Icelandic. + diff --git a/blog/content/projects/vaxandi_forritari/testing/index.md b/blog/content/projects/vaxandi_forritari/testing/index.md new file mode 100644 index 0000000..fcbf6d7 --- /dev/null +++ b/blog/content/projects/vaxandi_forritari/testing/index.md @@ -0,0 +1,7 @@ ++++ +template = "projects-page.html" +title = "testing" ++++ +# mgoooo + +**boo** diff --git a/blog/sass/colours.scss b/blog/sass/colours.scss index 5a1f7c7..feacbbe 100644 --- a/blog/sass/colours.scss +++ b/blog/sass/colours.scss @@ -17,6 +17,7 @@ $blue: #30A9FF; // Properties. $background: $black; $blockquote: $pink; +$code: $pink; $text: $periwinkle; $links: $purple; $dates: $purple; diff --git a/blog/sass/style.scss b/blog/sass/style.scss index ce76550..a40a676 100644 --- a/blog/sass/style.scss +++ b/blog/sass/style.scss @@ -81,13 +81,17 @@ ul li { } code { - color: colours.$pink; + color: colours.$code; } li { color: colours.$white; } +em, strong{ + color: colours.$blockquote; +} + hr { background: linear-gradient(to right, colours.$h1, colours.$h2, colours.$h3, colours.$h4, colours.$h5, colours.$h6); height: 5px; diff --git a/blog/templates/base.html b/blog/templates/base.html index 594f331..acafda5 100644 --- a/blog/templates/base.html +++ b/blog/templates/base.html @@ -24,6 +24,7 @@ diff --git a/blog/templates/projects-landing.html b/blog/templates/projects-landing.html new file mode 100644 index 0000000..a407279 --- /dev/null +++ b/blog/templates/projects-landing.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ section.title }} +

+ +{{ section.content | safe }} + +vaxandi forritari + + +{% endblock content %} diff --git a/blog/templates/projects-page.html b/blog/templates/projects-page.html new file mode 100644 index 0000000..dd1580f --- /dev/null +++ b/blog/templates/projects-page.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ page.title }} +

+ +{{ page.content | safe }} +{% endblock content %} diff --git a/blog/templates/projects.html b/blog/templates/projects.html new file mode 100644 index 0000000..eadba5d --- /dev/null +++ b/blog/templates/projects.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ section.title }} +

+ +{{ section.content | safe }} + + + +{% endblock content %}