1
0
mirror of https://github.com/actix/actix-website synced 2025-01-23 00:25:55 +01:00
actix-website/_layouts/docs.liquid

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-01-07 11:00:34 +08:00
<!DOCTYPE html>
<html>
<head>
{% include "head.liquid" %}
</head>
<body>
<header>
{% include "header.liquid" %}
</header>
<main>
2018-01-07 18:14:51 +08:00
<section class="blog">
2018-01-07 11:00:34 +08:00
<div class="inner">
<aside>
<p>Basics</p>
<ul>
2018-01-08 11:21:33 +08:00
<li><a {%if route == "Basics-example"%}class="active"{%endif%} href="/docs/Basics-example.html">Basics Example</a></li>
2018-01-07 11:00:34 +08:00
</ul>
<p>Reference</p>
<ul>
2018-01-08 11:21:33 +08:00
<li><a {%if route == "Reference-example"%}class="active"{%endif%} href="/docs/Reference-example.html">Reference Example</a></li>
2018-01-07 11:00:34 +08:00
</ul>
<p>Advance</p>
<ul>
2018-01-08 11:21:33 +08:00
<li><a {%if route == "Advance-example"%}class="active"{%endif%} href="/docs/Advance-example.html">Advance Example</a></li>
2018-01-07 11:00:34 +08:00
</ul>
<p>Misc</p>
<ul>
<li><a {%if route == "Misc-example"%}class="active"{%endif%} href="/docs/Misc-example.html">Misc Example</a></li>
</ul>
</aside>
2018-01-08 11:21:33 +08:00
<hr id="hr">
2018-01-07 11:00:34 +08:00
<main>
{{ content }}
</main>
</div>
</section>
</main>
<footer>
{% include "footer.liquid" %}
</footer>
</body>
</html>