Describe the solution you'd like
A clear and concise description of what you want to happen.
Hi, is it possible to run {{ blog_content }} macro from .html instead of .md?
Imagine instead of doing:
home.md
---
template: home.html <-- my custom
title: Blog
---
Hello folks!
{{ blog_content }}
with
home.html
{% extends "main.html" %}
<!-- Content -->
{% block content %}
{{ page.content }}
here will be my custom logic
{% endblock content %}
I would like to move {{ blog_content }} outside of home.md:
home.md
---
template: home.html <-- my custom
title: Blog
---
Hello folks!
with
home.html
{% extends "main.html" %}
<!-- Content -->
{% block content %}
{{ page.content }}
here will be my custom logic
{{ blog_content }}
{% endblock content %}
I couldn't manage to include the plugin templates (not found):
{% extends "blog.html" %}
{% include "plugins/mkdocs-blogging-plugin/templates/blog.html" %}
Describe the solution you'd like
A clear and concise description of what you want to happen.
Hi, is it possible to run
{{ blog_content }}macro from.htmlinstead of.md?Imagine instead of doing:
home.mdwith
home.htmlI would like to move
{{ blog_content }}outside of home.md:home.mdwith
home.htmlI couldn't manage to include the plugin templates (not found):