Created
December 15, 2011 13:00
-
-
Save yanping/1481016 to your computer and use it in GitHub Desktop.
index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: default | |
title: Portfolio | |
--- | |
<section class="content"> | |
<h2>Portfolio</h2> | |
<p>Check out my images below!</p> | |
</section> | |
<ul class="entries"> | |
{% for post in site.posts %} | |
<li> | |
<a href="{{ post.url }}"> | |
<img src="{{ post.image }}" /> | |
<h3>{{ post.title }}</h3> | |
</a> | |
</li> | |
{% endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment