ELS55NHUXBQVFGUEO3EX3SOBO4IBZXPRCCYARQCIH54OKJTIFCVAC
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{page.title}}
</h1>
<p class="subtitle">
<strong>
{{page.date}}
</strong>
</p>
{{ page.content | safe }}
{% endblock content %}
{% extends "base.html" %}
{% block content %}
<h1 class="title">
KodeSoul home
</h1>
<p>
<a href="{{ get_url(path='@/blog/_index.md')}}">
Posts
</a>
</p>
{% endblock content %}
{% extends "base.html" %}
{% block content%}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li>
<a href="{{ page.permalink | safe }}">
{{page.title}}
</a>
</li>
{% endfor %}
</ul>
{% endblock content%}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
KodeSoul
</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>
</html>
+++
title = "My first post"
date = 2024-08-27
+++
# Hello Rafiki !!
Welcome to my stream of creativity.
+++
title = "List of blog posts"
sort_by = "date"
template = "blog.html"
page_template = "post.html"
+++