-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (30 loc) · 1.15 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
---
layout: default
title: Dashboard
---
<section>
<h3>
<a class="anchor" href="#" aria-hidden="true"><span class="octicon octicon-link"></span></a>Welcome.
</h3>
<p>This site present a series of tutorials to improve your skills. The material we present has evolved over time and has been adopted by our team. Main topics include:</p>
<pre><code>JavaScript
Ruby
Design
</code></pre>
<p>We will periodically release new tutorials. Check out the latest below.</p>
<h3>
<a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>JavaScript</h3>
<p>We've crafted some handsome tutorials for you to use.</p>
<ul>
{% for post in site.posts %}
{% if post.categories contains "javascript" %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
<h3>
<a id="support-or-contact" class="anchor" href="#support-or-contact" aria-hidden="true"><span class="octicon octicon-link"></span></a>Interested in hands-on training?</h3>
<p>Reach out to <a href="mailto:[email protected]">us</a> to learn more.</p>
</section>