Branded UI Fixed

This commit is contained in:
2025-09-28 04:32:17 +00:00
parent 0f0087d756
commit 3c281adb2c
193 changed files with 19151 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{% assign notes = site.data.pages[page.path].notes %}
{% if notes != null %}
<h3>Notes:</h3>
{% if site.data.pages[page.path].notes-type == 'xml' %}
{% include {{notes}} type=include.type id=include.id %}
{% else %}
{% capture note-content %}
{% include {{notes}} type=include.type id=include.id %}
{% endcapture %}
<div style="display:inline-block" markdown="1">
{{ note-content | markdownify }}
</div>
{% endif %}
{% endif %}