mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 04:34:40 +03:00
24 lines
620 B
Plaintext
Executable File
24 lines
620 B
Plaintext
Executable File
<div class="sidebar">
|
|
<div class="sidebar-inner">
|
|
<ul class="main-menu">
|
|
<%- partial('partials/main_menu', { context: 'sidebar' }) %>
|
|
</ul>
|
|
<div class="list">
|
|
<h2>
|
|
<%-
|
|
type === 'exercises'
|
|
? '习题'
|
|
: type === 'book-zh-cn'
|
|
? '正文'
|
|
: type === 'answers'
|
|
? '参考答案'
|
|
: type === 'about'
|
|
? '关于'
|
|
: (type.charAt(0).toUpperCase() + type.slice(1))
|
|
%>
|
|
</h2>
|
|
<%- partial('partials/toc', { type: type }) %>
|
|
</div>
|
|
</div>
|
|
</div>
|