i don't remember what changed here
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
template = "projects.html"
|
template = "amateur_linguist.html"
|
||||||
title = "Vaxandi Forritari"
|
title = "Amateur Linguist"
|
||||||
+++
|
+++
|
||||||
I speak languages.
|
I speak languages.
|
||||||
|
@@ -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.
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
template = "projects.html"
|
template = "junior_animator.html"
|
||||||
title = "Junior Animator"
|
title = "Junior Animator"
|
||||||
+++
|
+++
|
||||||
I sometimes animate.
|
I sometimes animate.
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
template = "projects.html"
|
template = "music_enjoyer.html"
|
||||||
title = "Music Enjoyer"
|
title = "Music Enjoyer"
|
||||||
+++
|
+++
|
||||||
I like music.
|
I like music.
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
template = "projects.html"
|
template = "wannabe_game_developer.html"
|
||||||
title = "Wannabe Game Developer"
|
title = "Wannabe Game Developer"
|
||||||
+++
|
+++
|
||||||
Game dev.
|
Game dev.
|
||||||
|
@@ -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;
|
||||||
}
|
}
|
||||||
|
16
blog/templates/amateur_linguist.html
Normal file
16
blog/templates/amateur_linguist.html
Normal 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 %}
|
16
blog/templates/aspiring_graphics_programmer.html
Normal file
16
blog/templates/aspiring_graphics_programmer.html
Normal 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 %}
|
16
blog/templates/junior_animator.html
Normal file
16
blog/templates/junior_animator.html
Normal 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 %}
|
16
blog/templates/music_enjoyer.html
Normal file
16
blog/templates/music_enjoyer.html
Normal 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 %}
|
16
blog/templates/wannabe_game_developer.html
Normal file
16
blog/templates/wannabe_game_developer.html
Normal 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 %}
|
Reference in New Issue
Block a user