Skip to content

Commit

Permalink
adds tools page
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyyee committed May 9, 2017
1 parent 7def5a8 commit 521a22d
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
Binary file added public/articles/tools/thumbnail.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/learning.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@
"author_url": "unboring.net",
"thumbnail": "articles/progressive-webvr/thumbnail.png",
"date_published": "5-April-2017"
},
"tools": {
"name": "Tools for creating WebVR content.",
"description": "See all the options available for creating WebVR content",
"url": "tools.html",
"author": "Casey Yee",
"author_url": "twitter.com/whoyee",
"thumbnail": "articles/tools/thumbnail.jpg",
"date_published": "9-May-2017"
}
}
36 changes: 36 additions & 0 deletions public/tools.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% from '_helpers.html' import author_item, browsers, site_title %}
{% set browser = browsers.servo %}
{% set page = 'servo.html' %}
<!doctype html>
<html lang="en" data-layout="secondary" data-browser="{{ browser.slug }}">
<head>
{% include '_head.html' %}
<title>Tools</title>
</head>
<body>
<header id="header" class="header" role="banner">
<div class="container section">
{% include '_logo.html' %}

<a class="page-heading-link" href="{{ browser.about }}">
<h1 class="browser-name page-heading">Tools for creating WebVR content</h1>
</a>
</div>
</header>

<main id="main" class="main" role="main">
<div class="container">

<section class="section">
<h2><a href="#setup">Instructions</a></h2>
<ul class="bullets-light">
<li><span>Three.js</span></li>
<li><span>A-Frame</span></li>
</ul>
</section>
</div>
</main>

{% include '_footer.html' %}
</body>
</html>

0 comments on commit 521a22d

Please sign in to comment.