-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathindex.html.erb
44 lines (40 loc) · 1.35 KB
/
index.html.erb
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
---
title: Home
disable_breadcrumbs: true
disable_in_breadcrumbs_trail: true
---
<div class="intro-text">
<p>The National Renewable Energy Laboratory's developer network helps developers access and use energy data via Web services, including renewable energy and alternative fuel data.</p>
</div>
<div class="row feature-row">
<div class="col-md-4">
<div class="feature feature-doc">
<h2><a href="/docs">Web Service Documentation</a></h2>
<p>Explore our available Web services.</p>
<ul>
<% sitemap.find_resource_by_destination_path("/docs/index.html").children.sort_by { |p| p.data.title.to_s }.each do |child| %>
<% next if(child.data.hidden_child || child.data.title.to_s.blank?) %>
<li><%= link_to(child.data.title, child) %></li>
<% end %>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="feature feature-key">
<h2><a href="/signup">API Key</a></h2>
<p>Sign up to use our APIs.</p>
<ul>
<li><a href="/signup">Get an API Key</a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="feature feature-community">
<h2><a href="/community">Community</a></h2>
<p>Join the discussion and stay updated.</p>
<ul>
<li><a href="http://twitter.com/NRELdev">Follow Us on Twitter</a></li>
</ul>
</div>
</div>
</div>