shit's finally working
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
title = "List of blog posts"
|
||||
title = "Blog Posts"
|
||||
sort_by = "date"
|
||||
template = "blog.html"
|
||||
page_template = "blog-page.html"
|
||||
+++
|
||||
here
|
||||
|
@@ -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.
|
||||
<canvas id="rendering_canvas"/>
|
||||
|
||||
This is where you'll find my projects. They're split into different categories, for my different interests.
|
||||
|
6
blog/content/projects/vaxandi_forritari/_index.md
Normal file
6
blog/content/projects/vaxandi_forritari/_index.md
Normal file
@@ -0,0 +1,6 @@
|
||||
+++
|
||||
template = "projects.html"
|
||||
title = "Vaxandi Forritari"
|
||||
+++
|
||||
Vaxandi forritari means *growing developer* in Icelandic.
|
||||
|
7
blog/content/projects/vaxandi_forritari/testing/index.md
Normal file
7
blog/content/projects/vaxandi_forritari/testing/index.md
Normal file
@@ -0,0 +1,7 @@
|
||||
+++
|
||||
template = "projects-page.html"
|
||||
title = "testing"
|
||||
+++
|
||||
# mgoooo
|
||||
|
||||
**boo**
|
@@ -17,6 +17,7 @@ $blue: #30A9FF;
|
||||
// Properties.
|
||||
$background: $black;
|
||||
$blockquote: $pink;
|
||||
$code: $pink;
|
||||
$text: $periwinkle;
|
||||
$links: $purple;
|
||||
$dates: $purple;
|
||||
|
@@ -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;
|
||||
|
@@ -24,6 +24,7 @@
|
||||
<nav>
|
||||
<a href="{{ get_url(path='@/_index.md') }}">Home</a>
|
||||
<span id="text"> | </span><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>
|
||||
<spam id="text"> | </span><a href="{{ get_url(path='@/projects/_index.md') }}">Projects</a>
|
||||
<span id="text"> | </span><a href="{{ get_url(path='@/about_me/_index.md') }}">About Me</a>
|
||||
<hr>
|
||||
</nav>
|
||||
|
17
blog/templates/projects-landing.html
Normal file
17
blog/templates/projects-landing.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
{{ section.title }}
|
||||
</h1>
|
||||
|
||||
{{ section.content | safe }}
|
||||
|
||||
<a href="{{ get_url(path='@/projects/vaxandi_forritari/_index.md') }}">vaxandi forritari</a>
|
||||
<ul>
|
||||
{% for page in section.pages %}
|
||||
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock content %}
|
9
blog/templates/projects-page.html
Normal file
9
blog/templates/projects-page.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 id="title" class="title">
|
||||
{{ page.title }}
|
||||
</h1>
|
||||
|
||||
{{ page.content | safe }}
|
||||
{% endblock content %}
|
16
blog/templates/projects.html
Normal file
16
blog/templates/projects.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% 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