-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.29 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
---
layout: default
---
<h2>Posts</h2>
<ul class="posts">
{% for post in site.posts %}
<li><a href="{{ post.url }}" class="title">{{ post.title }}</a>
<time datetime="{{ post.date | date: '%Y-%m-%d' }}"><small class="date">{{ post.date | date: '%B %-d, %Y' }}</small></time></li>
{% endfor %}
</ul>
<h2>Talks</h2>
<ul class="talks">
<li>
<a href="{{ "/talks/extending-ember-with-analytics/#/" | prepend: site.baseurl }}">Extending Ember with Analytics</a>
{% include svg/youtube.html name="ember-with-analytics" url="https://www.youtube.com/watch?v=G0de3zNEkC4" %}
</li>
<li>
<a href="{{ "/talks/all-things-git/#/" | prepend: site.baseurl }}">All Things Git</a>
</li>
</ul>
<h2>Ember Addons</h2>
<ul class="ember-addons">
<li>
<a href="https://github.com/alexdiliberto/ember-transformicons">ember-transformicons</a>
{% include svg/book.html name="ember-transformicons" %}
</li>
<li>
<a href="https://github.com/alexdiliberto/ember-filepond">ember-filepond</a>
{% include svg/book.html name="ember-filepond" %}
</li>
<li>
<a href="https://github.com/alexdiliberto/ember-milligram">ember-milligram</a>
{% include svg/book.html name="ember-milligram" %}
</li>
<li>
<a href="https://github.com/alexdiliberto/ember-cowsay">ember-cowsay</a>
</li>
</ul>