Graphite/website/templates/book.html

131 lines
5.5 KiB
HTML

{% extends "base.html" %}
{% import "macros/book-outline.html" as book_outline %}
{%- block head -%}{%- set page = page | default(value = section) -%}
{%- set title = page.title -%}
{%- set meta_article_type = true -%}
{%- set meta_description = page.extra.summary | default(value = page.content | striptags | safe | linebreaksbr | replace(from = "<br>", to = " ") | replace(from = " ", to = " ") | trim | truncate(length = 200)) -%}
{%- set css = ["/template/book.css", "/layout/reading-material.css", "/component/code-snippet.css"] -%}
{%- set js = ["/js/template/book.js"] -%}
{%- endblock head -%}
{%- block content -%}{%- set page = page | default(value = section) -%}
{#- Search this page-or-section's ancestor tree for a section that identifies itself as a book, and save it to a `book` variable -#}
{%- for ancestor_path in page.ancestors | concat(with = page.relative_path) -%}
{#- Get the ancestor section from this ancestor path string -#}
{%- if ancestor_path is ending_with("/_index.md") -%}
{%- set potential_book = get_section(path = ancestor_path) -%}
{%- endif -%}
{#- Check if the ancestor section is the root of a book, and if so, set it to a variable accessible outside the loop -#}
{%- if potential_book.extra.book -%}
{%- set_global book = get_section(path = potential_book.path ~ "_index.md" | trim_start_matches(pat = "/")) -%}
{%- endif -%}
{%- endfor -%}
{#- Map this book's chapter path strings to an array of sections -#}
{%- set chapters = [] -%}
{%- for chapter_path in book.subsections -%}
{%- set_global chapters = chapters | concat(with = get_section(path = chapter_path)) -%}
{%- endfor -%}
{%- set chapters = chapters | sort(attribute = "extra.order") -%}
{#- A flat list of all pages in the ToC -#}
{%- set flattened_outline = book_outline::flatten_book_outline(section = book) -%}
{%- set flat_pages_list = book.path ~ ",,,,," ~ book.title ~ ";;;;;" ~ flattened_outline | split(pat = ";;;;;") -%}
{%- set flat_index_of_this = 0 -%}
{%- set flat_pages_path = [] -%}
{%- set flat_pages_title = [] -%}
{%- for item_str in flat_pages_list -%}
{%- if item_str | trim | length > 0 -%}
{%- set parts = item_str | split(pat = ",,,,,") -%}
{%- if current_path == parts | first -%}
{%- set_global flat_index_of_this = loop.index0 -%}
{%- endif -%}
{%- set_global flat_pages_path = flat_pages_path | concat(with = parts | first) -%}
{%- set_global flat_pages_title = flat_pages_title | concat(with = parts | last) -%}
{%- endif -%}
{%- endfor -%}
<section class="three-column-layout">
<aside class="chapters" data-chapters>
<div class="wrapper-outer">
<div class="wrapper-inner">
<button class="close-chapter-selection" data-close-chapter-selection>
<svg viewBox="0 0 24 24">
<polygon points="20.7,4.7 19.3,3.3 12,10.6 4.7,3.3 3.3,4.7 10.6,12 3.3,19.3 4.7,20.7 12,13.4 19.3,20.7 20.7,19.3 13.4,12" />
</svg>
</button>
{{- book_outline::render_book_outline(parent = book, current_path = current_path, index = 0, indents = 3) }}
</div>
</div>
</aside>
<section class="reading-material">
<div class="block">
<div class="article-title">
<h1>
<button title="Open chapter selection" class="open-chapter-selection" data-open-chapter-selection>
<svg viewBox="0 0 24 24">
<rect x="2" y="4" width="20" height="2"/>
<rect x="2" y="18" width="20" height="2"/>
<rect x="2" y="11" width="20" height="2"/>
</svg>
</button>
<span>{{ page.title }}</span>
</h1>
</div>
<article>
{{ page.content | safe }}
</article>
<hr />
<div class="prev-next">
{%- if flat_index_of_this >= 1 -%}
{%- set prev_path = flat_pages_path | nth(n = flat_index_of_this - 1) -%}
{%- set prev_title = flat_pages_title | nth(n = flat_index_of_this - 1) -%}
{%- endif -%}
{%- if prev_path %}
<a href="{{ prev_path | safe }}" title="{{ prev_title | safe }}">
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
<path d="M20,0C8.95,0,0,8.95,0,20c0,11.05,8.95,20,20,20c11.05,0,20-8.95,20-20C40,8.95,31.05,0,20,0z M20,38c-9.93,0-18-8.07-18-18S10.07,2,20,2s18,8.07,18,18S29.93,38,20,38z" />
<polygon points="24.71,10.71 23.29,9.29 12.59,20 23.29,30.71 24.71,29.29 15.41,20" />
</svg>
{{ prev_title }}
</a>
{%- else -%}
<a>{#- Spacer -#}</a>
{%- endif -%}
{%- if flat_index_of_this < flat_pages_path | length - 1 -%}
{%- set next_path = flat_pages_path | nth(n = flat_index_of_this + 1) -%}
{%- set next_title = flat_pages_title | nth(n = flat_index_of_this + 1) -%}
{%- endif -%}
{%- if next_path %}
<a href="{{ next_path | safe }}" title="{{ next_title | safe }}">
{{ next_title }}
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
<path d="M20,0C8.95,0,0,8.95,0,20c0,11.05,8.95,20,20,20c11.05,0,20-8.95,20-20C40,8.95,31.05,0,20,0z M20,38c-9.93,0-18-8.07-18-18S10.07,2,20,2s18,8.07,18,18S29.93,38,20,38z" />
<polygon points="16.71,9.29 15.29,10.71 24.59,20 15.29,29.29 16.71,30.71 27.41,20" />
</svg>
</a>
{%- endif %}
</div>
</div>
</section>
<aside class="contents">
<ul>
<li class="title">
<a href="#" title="{% if page.toc | length > 0 %}Contents (top ↑){% else %}Back to top ↑{% endif %}">
{% if page.toc | length > 0 %}Contents<span> (top ↑)</span>{% else %}Back to top ↑{% endif %}
</a>
</li>
{{- book_outline::render_book_page_toc(children = page.toc, indents = 1) }}
</ul>
</aside>
</section>
{%- endblock content -%}