i don't remember what changed here

This commit is contained in:
CJSatnarine
2025-03-21 22:31:19 -04:00
parent e5a10faac4
commit 3661438008
11 changed files with 87 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
+++ +++
template = "projects.html" template = "amateur_linguist.html"
title = "Vaxandi Forritari" title = "Amateur Linguist"
+++ +++
I speak languages. I speak languages.

View File

@@ -1,5 +1,5 @@
+++ +++
template = "projects.html" template = "aspiring_graphics_programmer.html"
title = "Aspiring Graphics Programmer" title = "Aspiring Graphics Programmer"
+++ +++
I think graphics are cool. I think graphics are cool.

View File

@@ -1,5 +1,5 @@
+++ +++
template = "projects.html" template = "junior_animator.html"
title = "Junior Animator" title = "Junior Animator"
+++ +++
I sometimes animate. I sometimes animate.

View File

@@ -1,5 +1,5 @@
+++ +++
template = "projects.html" template = "music_enjoyer.html"
title = "Music Enjoyer" title = "Music Enjoyer"
+++ +++
I like music. I like music.

View File

@@ -1,5 +1,5 @@
+++ +++
template = "projects.html" template = "wannabe_game_developer.html"
title = "Wannabe Game Developer" title = "Wannabe Game Developer"
+++ +++
Game dev. Game dev.

View File

@@ -93,7 +93,7 @@ em, strong{
} }
hr { hr {
background: linear-gradient(to right, colours.$h1, colours.$h2, colours.$h3, colours.$h4, colours.$h5, colours.$h6); background: linear-gradient(to right, colours.$h1, colours.$h1, colours.$h2, colours.$h3, colours.$h4, colours.$h5, colours.$h6);
height: 5px; height: 5px;
border: 0; border: 0;
} }

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1 id="amateur_linguist" class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1 id="aspiring_graphics_programmer" class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1 id="junior_animator" class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1 id="music_enjoyer" class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1 id="wannabe_game_developer" class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}