@require(page, toc_sections, symbols_details)
@extends('base_page.html')
@def header_links():
@for toc_section in toc_sections:
|
@toc_section.name
@end
@def content():
@for toc_section in toc_sections:
@end
@if page.formatted_contents:
@page.formatted_contents
@end
@for symbols_detail in symbols_details:
@if symbols_detail.name:
@symbols_detail.name
@end
\
@for i, description in enumerate(symbols_detail.descriptions):
@if i != 0:
@end
@description
@end
@end
@end