delete blog directory

This commit is contained in:
CJSatnarine
2025-03-31 19:30:00 -04:00
parent a24f483331
commit 82599fbe25
33 changed files with 15 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
{% 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 %}

View 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 %}

View 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 %}

50
templates/base.html Normal file
View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ config.extra.site_name }}</title>
<link rel="stylesheet" href="/style.css" />
<link href='https://fonts.googleapis.com/css?family=Roboto Mono' rel='stylesheet'>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.174.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.174.0/examples/jsm/"
}
}
</script>
<script type="module" src="/main.js"></script>
<script type="module" src="/window.js"></script>
</head>
<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>
<body>
<section class="section">
<div class="container">
{% block content %}
{% endblock %}
</div>
</section>
</body>
<footer id="footer">
<center>
<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>
</center>
</footer>
</html>

10
templates/blog-page.html Normal file
View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h1 id="title" class="title">
{{ page.title }}
</h1>
<h3 id="subtitle" class="subtitle"><strong>{{ page.authors }} | {{ page.date }} </strong></h3>
{{ page.content | safe }}
{% endblock content %}

14
templates/blog.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

9
templates/index.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<p>{{ section.content | safe }}</p>
{% endblock content %}

View 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 %}

View File

@@ -0,0 +1,26 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
<li><a id="vaxandi_forritari" href="{{ get_url(path='@/projects/vaxandi_forritari/_index.md') }}">vaxandi forritari</a></li>
<li><a id="aspiring_graphics_programmer" href="{{ get_url(path='@/projects/aspiring_graphics_programmer/_index.md') }}">aspiring graphics programmer</a></li>
<li><a id="amateur_linguist" href="{{ get_url(path='@/projects/amateur_linguist/_index.md') }}">amateur linguist</a></li>
<li><a id="wannabe_game_developer" href="{{ get_url(path='@/projects/wannabe_game_developer/_index.md') }}">wannabe game developer</a></li>
<li><a id="adventuring_animator" href="{{ get_url(path='@/projects/adventuring_animator/_index.md') }}">adventuring animator</a></li>
<li><a id="music_enjoyer" href="{{ get_url(path='@/projects/music_enjoyer/_index.md') }}">music enjoyer</a></li>
</ul>
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View File

@@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<h1 id="title" class="title">
{{ page.title }}
</h1>
{{ page.content | safe }}
{% endblock content %}

16
templates/projects.html Normal file
View 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 %}

View 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 %}