Skip to content

Commit 521a22d

Browse files
committed
adds tools page
1 parent 7def5a8 commit 521a22d

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed
128 KB
Loading

public/learning.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,14 @@
77
"author_url": "unboring.net",
88
"thumbnail": "articles/progressive-webvr/thumbnail.png",
99
"date_published": "5-April-2017"
10+
},
11+
"tools": {
12+
"name": "Tools for creating WebVR content.",
13+
"description": "See all the options available for creating WebVR content",
14+
"url": "tools.html",
15+
"author": "Casey Yee",
16+
"author_url": "twitter.com/whoyee",
17+
"thumbnail": "articles/tools/thumbnail.jpg",
18+
"date_published": "9-May-2017"
1019
}
1120
}

public/tools.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{% from '_helpers.html' import author_item, browsers, site_title %}
2+
{% set browser = browsers.servo %}
3+
{% set page = 'servo.html' %}
4+
<!doctype html>
5+
<html lang="en" data-layout="secondary" data-browser="{{ browser.slug }}">
6+
<head>
7+
{% include '_head.html' %}
8+
<title>Tools</title>
9+
</head>
10+
<body>
11+
<header id="header" class="header" role="banner">
12+
<div class="container section">
13+
{% include '_logo.html' %}
14+
15+
<a class="page-heading-link" href="{{ browser.about }}">
16+
<h1 class="browser-name page-heading">Tools for creating WebVR content</h1>
17+
</a>
18+
</div>
19+
</header>
20+
21+
<main id="main" class="main" role="main">
22+
<div class="container">
23+
24+
<section class="section">
25+
<h2><a href="#setup">Instructions</a></h2>
26+
<ul class="bullets-light">
27+
<li><span>Three.js</span></li>
28+
<li><span>A-Frame</span></li>
29+
</ul>
30+
</section>
31+
</div>
32+
</main>
33+
34+
{% include '_footer.html' %}
35+
</body>
36+
</html>

0 commit comments

Comments
 (0)