-
Notifications
You must be signed in to change notification settings - Fork 1
/
notes.html
40 lines (32 loc) · 920 Bytes
/
notes.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
---
title: Class Notes
permalink: "/notes/"
layout: page
redirect_from:
- "/courses/"
- "/courses/basicweb-crash/"
- "/courses/ios-crash/"
- "/courses/jekyll-github-pages/"
- "/courses/make-a-unity-game-today/"
- "/courses/website-in-one-day/"
- "/courses/weekofcode/"
- "/courses/weekofcode2/"
- "/courses/weekofcodelou/"
---
<div class="container">
<div class="blog-header">
<h1 class="blog-title">{{page.title}}</h1>
<p class="lead blog-description">{{page.description}}</p>
</div>
<div class="row">
<div class="col-sm-8 blog-main">
<div class="blog-post">
<ul>
{% for topic in site.notes %}
<li><a href={{topic.url}}>{{ topic.title }}</a></li>
{% endfor %}
</ul>
</div>
</div><!-- /.blog-main -->
</div><!-- /.row -->
</div><!-- /.container -->