mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
34 lines
686 B
HTML
34 lines
686 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
|
|
{%- include head.html -%}
|
|
|
|
<body>
|
|
{%- include header.html -%}
|
|
|
|
<div class="container-fluid">
|
|
<div class = "row flex-xl-nowrap">
|
|
|
|
{%- include sidebar.html -%}
|
|
|
|
<div class="d-none d-xl-block col-xl-2 bd-toc">
|
|
{%- include toc.html html=content class="section-nav" item_class="toc-entry" -%}
|
|
</div>
|
|
|
|
<div class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main">
|
|
|
|
{{ content }}
|
|
|
|
{%- include disqus.html -%}
|
|
|
|
{%- include footer.html -%}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|