removed unnecessary template html files for each section and had single blog.html file
Some checks failed
Build / deploy (push) Has been cancelled
Some checks failed
Build / deploy (push) Has been cancelled
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
template = "adventuring_animator.html"
|
||||
template = "blog.html"
|
||||
title = "Adventuring Animator"
|
||||
+++
|
||||
I want to start making more animations and art. This is where I show my animations and artwork. I fell in love with *Blender* while learning to programme at age 16. My introduction came from Media Arts class, where I initially learnt Blender for making assets for Unity. I fell in love with creating models and experimenting with shaders. The following two years of high school were spent developing my skills in the software. After graduating highschool, I stopped using the software to focus on software engineering for college for about two years. Now I hope to revisit this old passion of mine, and also venture into the unknown territory of digital art with *Krita*.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
template = "amateur_linguist.html"
|
||||
template = "blog.html"
|
||||
title = "Amateur Linguist"
|
||||
+++
|
||||
Languages are cool. I like languages. I want to languages. Here you will find my linguistics projects. I had an interest in linguistics since I was a child. My native tongue is *English*, but I find interest in these other languages:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
template = "aspiring_game_developer.html"
|
||||
template = "blog.html"
|
||||
title = "Aspiring Game Developer"
|
||||
+++
|
||||
I think graphics are cool. I really like graphics. When I grow up I want to be a graphics programmer. My admiration for computer graphics and game development grew with my interests in programming and 3D animation.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
template = "frolicking_photographer.html"
|
||||
template = "blog.html"
|
||||
title = "Frolicking Photographer"
|
||||
+++
|
||||
I inherited an old Nikon D70s camera with fungi infested lenses and refurbished an old Canon EOS 300D.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
template = "music_enjoyer.html"
|
||||
template = "blog.html"
|
||||
title = "Music Enjoyer"
|
||||
+++
|
||||
I like music. I listen to a lot of music. I want to learn how to make music. Here you'll find my music projects, whenever I get to them.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
template = "projects.html"
|
||||
template = "blog.html"
|
||||
title = "Vaxandi Forritari"
|
||||
+++
|
||||
This is where you'll find my coding projects, tech projects, anything that's coding but isn't <a id="aspiring_graphics_programmer" href="/projects/aspiring_game_developer/">game development</a>.
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 id="adventuring_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 %}
|
||||
@@ -1,16 +0,0 @@
|
||||
{% 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 %}
|
||||
@@ -1,16 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 id="aspiring_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 %}
|
||||
@@ -5,6 +5,8 @@
|
||||
{{ 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>
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 id="frolicking_photographer" 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 %}
|
||||
@@ -1,16 +0,0 @@
|
||||
{% 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 %}
|
||||
@@ -1,16 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 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 %}
|
||||
Reference in New Issue
Block a user