realaravinth
4792575405
commit 1241888f29ec90c03df4ffba7e250c8b42a0a45c Author: realaravinth <realaravinth@batsense.net> Date: Mon Sep 12 14:51:34 2022 +0530 feat: set draft=false commit ba3d8eab8f8f410cb9ff5d7529f11d5da4d91097 Author: realaravinth <realaravinth@batsense.net> Date: Sun Sep 11 19:13:52 2022 +0530 fix: more typos and errors commit 310950ab62bef46edfcfc86d00bb586a5ad2c3a9 Author: realaravinth <realaravinth@batsense.net> Date: Sun Sep 11 19:13:39 2022 +0530 feat: add toc to blog commit 9fe83cdba08194f7c59cb4b36c45f5091caf1c15 Author: realaravinth <realaravinth@batsense.net> Date: Sun Sep 11 18:35:08 2022 +0530 fix: styling and typo errors commit 6070f79b9be9ebc30c983651db94f0f7e76204cf Author: realaravinth <realaravinth@batsense.net> Date: Sun Sep 11 18:33:11 2022 +0530 feat: first draft of manual website deployment blog post
22 lines
628 B
HTML
22 lines
628 B
HTML
{% extends "base.html" %} {% block meta %} {% set description = page.description
|
|
%} {{ macros::get_meta_tags(title=page.title, description=description) }} {%
|
|
endblock meta %} {% block content %}
|
|
|
|
<div class="page__container">
|
|
<h1 class="page__group-title">{{ page.title }}</h1>
|
|
{% include "blog/_meta.html" %}
|
|
|
|
<div class="blog__content">
|
|
{% include "blog/_toc.html" %}
|
|
{{ page.content | safe }}
|
|
</div>
|
|
<br />
|
|
<br />
|
|
<div class="blog__post-tag-container">
|
|
{% for t in page.taxonomies.tags %}
|
|
<a class="blog__post-tag" href="/tags/{{t | slugify }}">#{{ t }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|