{% set theme_modes = ['light', 'dark'] %} {% include "partials/theme_prepaint.html" with context %} {% set page_url = config.site_url.rstrip('/') + '/' + current_page.replace('.md', '.html') if current_page and current_page != 'index.md' else config.site_url %} {{ title }} - {{ config.site_name }} {% if config.theme and config.theme.palette %} {% endif %}
{% if progress_percent is not none %}
{{ progress_percent }}%
{% endif %} {% include "partials/theme_switcher.html" %}
{% if breadcrumbs %}
{% for crumb in breadcrumbs %} {% if not loop.last %} {{ crumb.title }} / {% else %} {{ crumb.title }} {% endif %} {% endfor %}
{% endif %}
{% if current_index is not none %} Lesson {{ current_index + 1 }} of {{ total_pages }} {% endif %}

{{ title }}

{% block content %}{% endblock %}
{% if prev_page %} Previous Lesson {{ prev_page.title }} {% else %}{% endif %} {% if next_page %} Next Lesson {{ next_page.title }} {% endif %}
{% include "partials/active_nav_script.html" %} {% set theme_switcher_modes = [ {"value": "light", "label": "Day", "swatch_bg": "#FBF9F4", "swatch_fg": "#2E7D5B"}, {"value": "dark", "label": "Night", "swatch_bg": "#10241A", "swatch_fg": "#7FD4AE"} ] %} {% include "partials/theme_switcher_script.html" with context %} {% include "partials/style_switcher.html" %} {% include "partials/style_switcher_script.html" %}