mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-20 17:43:24 +00:00
25 lines
822 B
HTML
25 lines
822 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ _input }} {{ title }}{% parent %}{% endblock %}
|
|
{% block description %}{% endblock %}
|
|
{% block robots %}index, follow{% endblock %}
|
|
{% block content %}
|
|
<div class="book {% if _input == "README.md" %}with-summary{% endif %}">
|
|
{% include "includes/book/header.html" %}
|
|
{% include "includes/book/summary.html" %}
|
|
|
|
<div class="book-body">
|
|
<div class="page-inner">
|
|
{% for section in content %}
|
|
<section class="{{ section.type }}">
|
|
{% if section.type == "normal" %}
|
|
{% autoescape false %}{{ section.content }}{% endautoescape %}
|
|
{% elif section.type == "exercise" %}
|
|
|
|
{% endif %}
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |