🌐 AI搜索 & 代理 主页
Skip to content

Commit 1ca5a7f

Browse files
author
Koba Khitalishvili
committed
added example dificulty
1 parent fe9c0f5 commit 1ca5a7f

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

examples/indexv1.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
---
3+
4+
<html>
5+
6+
<head>
7+
<title>Index of dc.js examples</title>
8+
<link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css">
9+
10+
<style>
11+
.table-form {
12+
table-layout:fixed;
13+
/* width: 25%; */
14+
span:4
15+
}
16+
</style>
17+
</head>
18+
19+
<body>
20+
<div class="container">
21+
<h2>Examples of using dc.js</h2>
22+
<p>An attempt to present a simple example of each chart type.</p>
23+
<p>Also see <a href="../transitions/">transitions</a> &ndash; <a href="../resizing/">resizing</a> &ndash; <a
24+
href="../zoom/">zoom</a>.</p>
25+
<p>Contributions <a href="https://github.com/dc-js/dc.js/blob/master/CONTRIBUTING.md">welcome</a>.
26+
Source <a href="https://github.com/dc-js/dc.js/tree/develop/web-src/examples">
27+
here</a>.</p>
28+
29+
{% assign grouped_links = site.data.examples | group_by: "difficulty-level" | sort: "name" %}
30+
{% for group in grouped_links %}
31+
<h2>{{ group.name }}</h2>
32+
<table class = "table table-form">
33+
<tbody>
34+
{% tablerow link in group.items cols:4 %}
35+
<a href='{{ link["example-name"] }}.html'>{{ link["example-name"] }}</a>
36+
{% endtablerow %}
37+
</tbody>
38+
</table>
39+
{% endfor %}
40+
41+
42+
43+
</div>
44+
</body>
45+
46+
</html>

0 commit comments

Comments
 (0)