mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 04:34:40 +03:00
62 lines
2.5 KiB
Plaintext
Executable File
62 lines
2.5 KiB
Plaintext
Executable File
<div class="sidebar">
|
|
<div class="sidebar-inner-index">
|
|
<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>
|
|
</div>
|
|
|
|
<div id="hero">
|
|
<div class="inner">
|
|
<div class="left">
|
|
<img class="hero-logo" src="<%- url_for("/modern-cpp/assets/cover-2nd.png") %>">
|
|
</div><div class="right">
|
|
<h4>欧长坤 著</h4>
|
|
<h1>
|
|
现代 C++ 教程<br>
|
|
</h1>
|
|
<h2>高速上手 C++ 11/14/17/20</h2>
|
|
<h3>第二版</h3>
|
|
<p>
|
|
<a class="button white" href="<%- url_for("/modern-cpp/zh-cn/00-preface/") %>">🇨🇳 在线阅读</a>
|
|
<a class="button download" href="<%- url_for("/modern-cpp/pdf/modern-cpp-tutorial-zh-cn.pdf") %>">🇨🇳 下载</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="hero">
|
|
<div class="inner">
|
|
<div class="left">
|
|
<img class="hero-logo" src="<%- url_for("/modern-cpp/assets/cover-2nd-en.png") %>">
|
|
</div><div class="right">
|
|
<h4>Changkun Ou</h4>
|
|
<h1>
|
|
Modern C++ Tutorial
|
|
</h1>
|
|
<h2>C++ 11/14/17/20 On the Fly</h2>
|
|
<h3>SECOND EDITION</h3>
|
|
<p>
|
|
<a class="button white" href="<%- url_for("/modern-cpp/en-us/00-preface/") %>">🇬🇧 Read Online</a>
|
|
<a class="button download" href="<%- url_for("/modern-cpp/pdf/modern-cpp-tutorial-en-us.pdf") %>">🇬🇧 Download</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<p>
|
|
<a href="https://changkun.de">欧长坤</a> © 2016-<%- new Date().getFullYear() %> 版权所有,
|
|
采用<a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/">知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议许可</a>,代码使用 <a href="https://opensource.org/licenses/MIT" target="_blank">MIT</a> 协议开源。</a>
|
|
</p>
|
|
<p>
|
|
<a href="https://changkun.de">Changkun Ou</a> © 2016-<%- new Date().getFullYear() %>.
|
|
The book is licensed under <a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0</a>, code is open sourced under the <a href="https://opensource.org/licenses/MIT" target="_blank">MIT</a> License. </a>
|
|
</p>
|
|
</div>
|
|
<script src="https://cdn.rawgit.com/wnda/pivot/master/pivot.js"></script>
|
|
<script>pivot.init({ selector: ".hero-logo", shine: true, shadow: true, scale: true});</script> |