{% extends "base.html" %} {% block title %}{{ page.title }}
โ {{ site.title }}{% endblock %} {% block description %}{{
description }}{% endblock %} {% block og_title %}{{
page.title }} โ {{ site.title }}{% endblock %} {% block
og_type %}article{% endblock %} {% block twitter_title %}{{
page.title }} โ {{ site.title }}{% endblock %} {% block
content %}
{% if page.icon %}{{ page.icon }}{% endif %}{% if page.namespace %}{% for part
in page.namespace_parts %}{{ part.name }}/{% endfor %}{%
endif %}{{ page.display_name }}
{% if page.aliases %}
{% for alias in page.aliases %}{{ alias }}{% endfor %}
{% endif %} {% if page.tags or page.meta['crystal-type'] or page.meta['crystal-domain'] %}
{% for tag in page.tags %}
{{ tag }}
{% endfor %}
{% if page.meta['crystal-type'] %}
{{ page.meta['crystal-type'] }}
{% endif %}
{% if page.meta['crystal-domain'] %}
{{ page.meta['crystal-domain'] }}
{% endif %}
{% endif %} {% if page.focus and page.focus > 0 %}
ฯ {{ (page.focus * 100) | round(2) }}%
{% endif %} {% if page.date %}
{{ page.date }}
{% endif %}
{% if page.toc %} {{ page.toc|safe }} {% endif %}
{{ page.html_content|safe }}
{% if dimensional_peers %}
Dimensions
{% for peer in dimensional_peers %}
{{ peer.title }}
{{ peer.html_content|safe }}
{% endfor %}
{% endif %}
{% if page.children %}
Pages in this namespace
{% for child in page.children %}
{{ child.title }}
{% endfor %}
{% endif %} {% include "partials/backlinks.html" %} {%
if graph.show_minimap %}
Local Graph
{% endif %}
{{ page.word_count }} words ยท {{
page.reading_time_minutes }} min read
{% endblock %}
optica/templates/page.html
ฯ 0.0%