shit's finally working
This commit is contained in:
@@ -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