sairate 4108f6c42d docs(book): 添加现代 C++教程及相关代码
- 新增现代 C++ 教程的 Preface 章节,包括英文和中文版本
- 添加 C++ Primer 练习代码
- 新增 Learn C++ 教程的 C++ 开发简介章节
- 添加头文件解析文档
- 更新 mkdocs.yml,包含新教程的目录结构
- 修改项目设置,使用 Python 3.10环境
2025-07-06 16:14:43 +08:00

26 lines
805 B
Plaintext

<div class="sidebar blog">
<div class="sidebar-inner">
<ul class="main-menu">
<% if (page.type == 'book-en-us') { %>
<%- partial('partials/main_menu_en', { context: 'nav' }) %>
<% } else {%>
<%- partial('partials/main_menu', { context: 'nav' }) %>
<% } %>
</ul>
<div class="list">
<ul style="padding: 0;">
<% site.posts.sort('date', -1).limit(10).each(function (post) { %>
<li>
<a href="/<%- post.path %>" class="sidebar-link<%- page.title === post.title ? ' current' : '' %>"><%- post.title %></a>
</li>
<% }) %>
</ul>
</div>
</div>
</div>
<div class="content with-sidebar post">
<h1><%- page.title %></h1>
<h4><%- page.date.format('MMM D[,] YYYY') %></h4>
<%- page.content %>
</div>