This repository has been archived by the owner on Oct 29, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
index.html
77 lines (72 loc) · 2.81 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: null
title: "Overview"
permalink: index.html
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body data-spy="scroll" data-target=".sidebar">
{% include header.html %}
<div class="content">
{% include description.html %}
<div id="swap"></div>
<div id="guide" class="container">
<div class="row">
<div id="sidenav" class="col-md-3 hidden-sm hidden-xs sidebar-wrapper">
<div class="sidebar">
<h1><img src="/assets/images/ember-cli-logo-small-dark.png" alt="Ember CLI" height="40" /></h1>
<ul class="nav sidenav">
<li class="ectop"><a href="/"><span class="glyphicon glyphicon-arrow-up"></span>Home</a></li>
{% for guide in site.posts %}
{% if guide.hidden != 'true' %}
{% if guide.category %}
{% else %}
<li>
<a href="#{{guide.permalink}}">{{guide.title}}</a>
</li>
{% endif %}
{% endif %}
{% endfor %}
{% for category in site.categories %}
<li class="ectop">
<a href="/{{ category | first }}">
{{ category | first }}
</a>
</li>
{% endfor %}
<li class="ectop"><a href="https://ember-cli.com/api/" target="_blank">API</a></li>
<li class="ectop"><a href="https://github.com/ember-cli/ember-cli.github.io" target="_blank">Improve the site</a></li>
</ul>
</div>
</div>
<div class="col-md-9 main">
<div class="content-section">
{% for guide in site.posts %}
{% if guide.hidden != 'true' and guide.category == page.category %}
<div id="{{guide.permalink}}" class="guide-content">
<a class="edit-page" href="{{guide.github}}" title="Edit this page on GitHub">
<span class="glyphicon glyphicon-pencil"></span>
</a>
<h1>{{guide.title}}</h1>
<p>{{guide.content}}</p>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}
{% include scripts.html %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49225444-3', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>