-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheffective-cpp.html
More file actions
31 lines (30 loc) · 864 Bytes
/
effective-cpp.html
File metadata and controls
31 lines (30 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: 细读 Effective C++
description: 深入 C++ 的诸多设计细节,了解实际场景的最佳实践,以面向对象的方式重新认识 C++。
---
<div class="module-collection">
<div class="jumbotron">
<div class="container-fluid overlay">
<h1>{{page.title}}</h1>
<p>{{page.description}}</p>
</div>
</div>
<div class="container-fluid">
<div class="row">
{%for post in site.effective-cpp %}
<article class="col-sm-6">
<h3>
<a class="title" href="{{ post.url }}">{{ post.title }}</a>
</h3>
<p class="tag-list">
{% for tag in post.tags %}
<a class="tag" href="/tags.html#{{tag}}">{{tag}}</a>
{% endfor %}
</p>
<div class="md">{{ post.excerpt }}</div>
</article>
{% endfor %}
</div>
</div>
</div>