-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcprojects.html
82 lines (77 loc) · 2.75 KB
/
cprojects.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: Engineering
---
<!--<center><font color="blue" size="50px">Engineering</font></center> -->
<center><h1>工程足迹</h1></center>
<center>包括代码框架等相关的学习笔记 -- <a href="{{ site.baseurl }}/statement.html">© CopyRight</a></center>
<center>---------------------------------------------------------------------------</center>
<div class="container"> <!--- 1 -->
<div class="project-box">
<div class="row">
<div class="col-md-3 project-image">
<!--<img src="{{ site.baseurl }}/images/pdDetect/pDetect.jpg">-->
</div>
<div class="col-md-9 project-post">
{% for category in site.categories %}
{% if category[0] == 'fcDLF' %}
<h1>DL框架({{category | last | size}})</h1>
<div class="post">
<ul class="arc-list">
{% for post in category.last %}
<li>{{ post.date | date:"%d/%m/%Y"}}<a href="{{ post.url | absolute_url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="container"> <!--- 2 -->
<div class="project-box">
<div class="row">
<div class="col-md-3 project-image">
<!--<img src="{{ site.baseurl }}/images/pdDetect/pDetect.jpg">-->
</div>
<div class="col-md-9 project-post">
{% for category in site.categories %}
{% if category[0] == 'fcHPC' %}
<h1>高性能计算 ({{category | last | size}})</h1>
<div class="post">
<ul class="arc-list">
{% for post in category.last %}
<li>{{ post.date | date:"%d/%m/%Y"}}<a href="{{ post.url | absolute_url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="container"> <!--- 3 -->
<div class="project-box">
<div class="row">
<div class="col-md-3 project-image">
<!--<img src="{{ site.baseurl }}/images/pdAlign/pAlign.jpg">-->
</div>
<div class="col-md-9 project-post">
{% for category in site.categories %}
{% if category[0] == 'fcOther' %}
<h1>其他 ({{category | last | size}})</h1>
<div class="post">
<!---<h2>{{ category | first }}</h2>-->
<ul class="arc-list">
{% for post in category.last %}
<li>{{ post.date | date:"%d/%m/%Y"}}<a href="{{ post.url | absolute_url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>