mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-23 02:53:29 +00:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% extends "./layout.html" %}
|
|
|
|
{% block title %}{{ progress.current.title }} | {{ title }}{% endblock %}
|
|
|
|
{% block style %}
|
|
{# Default styles if not disabled #}
|
|
{% if not styles.print %}
|
|
<link rel="stylesheet" href="{{ staticBase }}/{{ options.generator }}.css">
|
|
{% endif %}
|
|
|
|
{# Style from plugins #}
|
|
{% for resource in plugins.resources.css %}
|
|
{% if resource.url %}
|
|
<link rel="stylesheet" href="{{ resource.url }}">
|
|
{% else %}
|
|
<link rel="stylesheet" href="{{ staticBase }}/plugins/{{ resource.path }}">
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{# Custom styles from the book #}
|
|
{% for type, style in styles %}
|
|
<link rel="stylesheet" href="{{ basePath }}/{{ style }}">
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page">
|
|
{% block page %}
|
|
<h1 class="book-chapter book-chapter-{{ progress.current.level|lvl }}">{{ progress.current.title }}</h1>
|
|
{% for section in content %}
|
|
<div class="section {{ section.type }}" id="section-{{ section.id }}">
|
|
{% if section.type == "normal" %}
|
|
{% autoescape false %}{{ section.content }}{% endautoescape %}
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
|