-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathindex.ejs
45 lines (40 loc) · 1.31 KB
/
index.ejs
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
<%- partial('partials/examples/sidebar', {site: site, page: page}) %>
<div class="content content--index home-content">
<div class="home-center">
<iframe
id="exampleIframe" class="example__iframe"
width="100%" height="100%"
src="<%= site.data.examples.home.scene_url %>"
allowfullscreen="yes" allowvr="yes" scrolling="no"></iframe>
</div>
<div id="homeContent" class="copy__wrap">
<ul class="menu">
<li class="menu-item">
<a href="<%- url_for(docs_root_path(site.pages, config.aframe_version)) %>">Docs</a>
</li>
<li class="menu-item">
<a href="<%- url_for('faq/') %>">FAQ</a>
</li>
<li class="menu-item">
<a href="<%- url_for('blog/') %>">Blog</a>
</li>
<li class="menu-item">
<a href="<%- url_for('community/') %>">Community</a>
</li>
<li class="menu-item">
<a href="<%- url_for('showcase/') %>">Showcase</a>
</li>
</ul>
<%- page.content %>
<a href="<%- url_for('docs/' + config.aframe_version + '/introduction/') %>"
class="get-started nav-link">
Get Started
</a>
<div id="usersContainer">
<p>Special Sponsors</p>
<div>
<a href="https://supermedium.com"><img src="/images/users/supermedium.svg"></a>
</div>
</div>
</div>
</div>