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--- layout: default title: Projects --- <section class="home"> {% include bar.html tag="Projects" %} <ul> {% for project in site.data.projects %} <li> <img src="/images/browser.png"> <a href="http://gitcafe.com/EdwonLim/{{ project.gitcafe }}">{{ project.name }}</a> </li> <li> <small>http://gitcafe.com/EdwonLim/{{ project.gitcafe }}</small> </li> <li> <p>{{ project.summary }}</p> </li> {% endfor %} </ul> </section>