more changes

This commit is contained in:
CJSatnarine
2025-03-20 11:11:25 -04:00
parent 86abeb41e4
commit 5d6f3db809
6 changed files with 24 additions and 13 deletions

View File

@@ -8,7 +8,6 @@ Hey... I'm CJ! But you can call me CJ... As you can tell, this website is curren
Any way, I'm an aspriring graphics programmer from Waterloo, Ontario. I've got a few weird interests in linguistics, history, maths, 3D animation, game development, and art. Any way, I'm an aspriring graphics programmer from Waterloo, Ontario. I've got a few weird interests in linguistics, history, maths, 3D animation, game development, and art.
Currently, I'm spending a lot of my time learning a lot of things relating to my interests. You can check out my <a href="https://github.com/CJSatnarine" target="_blank">Github</a> to see what I'm up to. Currently, I'm spending a lot of my time learning a lot of things relating to my interests. You can check out my <a href="https://github.com/CJSatnarine" target="_blank">Github</a> to see what I'm up to.
<canvas id="canvas"/>
```java ```java
class Main { class Main {
@@ -17,3 +16,6 @@ class Main {
} }
} }
``` ```
<canvas id="canvas"/>

View File

@@ -1,7 +1,16 @@
// This is inspired by the husqy theme on monkeytype.com (https://github.com/monkeytypegame/monkeytype/blob/master/frontend/static/themes/husqy.css). // This is inspired by the husqy theme on monkeytype.com (https://github.com/monkeytypegame/monkeytype/blob/master/frontend/static/themes/husqy.css).
$background: #000000; // Colours.
$white: #FFFFFF; $white: #FFFFFF;
$black: #000000;
$purple: #962FFE; $purple: #962FFE;
$voilet: #1e001e;
$pink: #FFA0E3; $pink: #FFA0E3;
$text: #EBD7FF; $periwinkle: #EBD7FF;
$yoghurt: #d1e6ff;
// Properties? I'm unsure what to call this.
$background: $black;
$blockquote: $pink;
$text: $periwinkle;
$links: $purple;

View File

@@ -19,7 +19,7 @@ a:link,
a:visited, a:visited,
a:hover, a:hover,
a:active { a:active {
color: colours.$purple; color: colours.$links;
background-color: transparent; background-color: transparent;
text-decoration: none; text-decoration: none;
} }
@@ -29,17 +29,13 @@ h1 {
} }
blockquote > p { blockquote > p {
color: colours.$pink; color: colours.$blockquote;
} }
p { p {
color: colours.$text; color: colours.$text;
} }
#test {
color: colours.$pink;
}
center { center {
color: colours.$purple; color: colours.$purple;
} }

View File

@@ -21,14 +21,17 @@
<script type="module" src="/window.js"></script> <script type="module" src="/window.js"></script>
</head> </head>
<nav>
<p><a href="{{ get_url(path='@/_index.md') }}">Home</a>.</p>
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
</nav>
<body> <body>
<section class="section"> <section class="section">
<div class="container"> <div class="container">
{% block content %} {% block content %}
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
{% endblock %} {% endblock %}
</div> </div>
</section> </section>
</body> </body>
@@ -38,6 +41,7 @@
<a href="https://evilr.ing/cjsatnarine/previous">&lt;</a> <a href="https://evilr.ing/cjsatnarine/previous">&lt;</a>
<a href="https://evilr.ing">EVILRING</a> <a href="https://evilr.ing">EVILRING</a>
<a href="https://evilr.ing/cjsatnarine/next">&gt;</a> <a href="https://evilr.ing/cjsatnarine/next">&gt;</a>
<p> Made with <a href="https://www.getzola.org/">Zola</a> </p>
</center> </center>
</footer> </footer>

View File

@@ -1,6 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<h1 class="title"> <h1 class="title">
{{ page.title }} {{ page.title }}
</h1> </h1>

View File

@@ -5,7 +5,6 @@
{{ section.title }} {{ section.title }}
</h1> </h1>
<!-- Not sure what this page stuff is but I reckon I'll find out soon enough. -->
<ul> <ul>
{% for page in section.pages %} {% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>