i need to sleep

This commit is contained in:
CJSatnarine
2025-03-21 01:18:06 -04:00
parent 57a4b6c72c
commit 1d3212c1ba
11 changed files with 111 additions and 54 deletions

View File

@@ -22,9 +22,10 @@
</head>
<nav>
<p><a href="{{ get_url(path='@/_index.md') }}">Home</a>.</p>
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
<a href="{{ get_url(path='@/_index.md') }}">Home </a>
<a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.
<a href="{{ get_url(path='@/about_me/_index.md') }}">About Me</a>.
<hr>
</nav>
<body>
@@ -41,7 +42,7 @@
<a href="https://evilr.ing/cjsatnarine/previous">&lt;</a>
<a href="https://evilr.ing">EVILRING</a>
<a href="https://evilr.ing/cjsatnarine/next">&gt;</a>
<p> Made with <a href="https://www.getzola.org/">Zola</a> </p>
<p> Made with <a href="https://www.getzola.org/">Zola</a></p>
</center>
</footer>

View File

@@ -1,11 +1,11 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
<a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a>
<h1 id="title" class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<h3 id="subtitle" class="subtitle"><strong>{{ page.date }}</strong></h3>
{{ page.content | safe }}
{% endblock content %}

View File

@@ -7,7 +7,7 @@
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>