forked from desandro/3dtransforms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 761 Bytes
/
index.html
File metadata and controls
36 lines (29 loc) · 761 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
32
33
34
35
36
---
layout: nil
title: Intro to CSS 3D transforms
---
{% assign root_path = '' %}
{% include html-head.html %}
</head>
<body class="index">
<h1>{{ site.site_name }}</h1>
<p>By <a href="http://desandro.com">David DeSandro</a></p>
<nav>
<h2>Docs</h2>
<ul>
{% for doc in site.categories.docs reversed %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endfor %}
</ul>
</nav>
<nav>
<h2>Examples</h2>
<ul>
{% for example in site.categories.examples reversed %}
<li><a href=".{{ example.url }}">{{ example.title }}</a></li>
{% endfor %}
</ul>
</nav>
<p>Project home: <a href="http://github.com/desandro/3dtransforms">github.com/desandro/3dtransforms</a></p>
</body>
</html>