Files
modern-cpp-tutorial/website/themes/moderncpp/layout/partials/toc.ejs
2018-05-03 11:30:28 +02:00

8 lines
286 B
Plaintext
Executable File

<ul class="menu-root">
<% site.pages.find({type: type}).sort('order').each(function (p) { %>
<li>
<a href="<%- url_for(p.path) %>" class="sidebar-link<%- page.title === p.title ? ' current' : '' %><%- p.is_new ? ' new' : '' %>"><%- p.title %></a>
</li>
<% }) %>
</ul>