mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 12:44:40 +03:00
8 lines
286 B
Plaintext
Executable File
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>
|