Files
modern-cpp-tutorial/website/themes/moderncpp/layout/partials/header.ejs
Changkun Ou 2eb8fdb099 all: rename book title
Update #1
2019-07-20 12:44:34 +02:00

19 lines
661 B
Plaintext
Executable File

<div id="header">
<a id="logo" href="<%- url_for("/modern-cpp/") %>">
<% if (page.type == 'book-en-us') { %>
<img src="<%- url_for("/modern-cpp/assets/cover-2nd-en.png") %>">
<span>Modern C++ Tutorial: C++ 11/14/17/20 On the Fly</span>
<% } else {%>
<img src="<%- url_for("/modern-cpp/assets/cover-2nd.png") %>">
<span>现代 C++ 教程:高速上手 C++ 11/14/17/20</span>
<% } %>
</a>
<ul id="nav">
<% if (page.type == 'book-en-us') { %>
<%- partial('partials/main_menu_en', { context: 'nav' }) %>
<% } else {%>
<%- partial('partials/main_menu', { context: 'nav' }) %>
<% } %>
</ul>
</div>