-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
37 lines (33 loc) · 1.08 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
---
layout: default
---
<div id="portfolio">
<div class="sectionhead wow bounceInUp" data-wow-duration="2s">
<h3>3rd party Octopress themes</h3>
<hr class="separetor">
</div>
<div class="portfolioitems container">
<ul>
<div id="shotsByPlayerId">
{% for post in site.posts %}
<li>
<h2> {{ post.title }} </h2>
<a href="{{ post.github_link}}">
<img src="/screenshots/{{ post.slug }}.png">
</a>
{% if post.demo_preview %}
<h3><a href="{{ post.demo_preview }}">Preview</a></h3>
{% endif %}
{% if post.demo_screenshot %}
<h3><a href="{{ post.demo_screenshot }}">Screenshot</a></h3>
{% endif %}
<p class="post-description">{{ post.description }}</p>
</li>
{% endfor %}
</div>
</ul>
</div>
<br>
</div>
<!-- <iframe src="http://ghbtns.com/github-btn.html?user=mdo&repo=github-buttons&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe> -->