website/ianonavy/projects.html
2015-05-27 20:55:05 -07:00

46 lines
1.5 KiB
HTML

---
layout: page
title: Projects
permalink: /projects/
projects:
- title: How2Pizza
image: how2pizza.png
description: Simple tool to help large groups of friends order pizza.
url: http://how2pizza.com
- title: Potato Ipsum
image: potatoipsum.png
description: Lorem ipsum for potato fans.
url: http://potatoipsum.com
- title: SMS Fixer
image: sms-fixer.png
description: Simple recovery script and Web service to convert Google Voice HTML logs into the Android app <a href="https://play.google.com/store/apps/details?id=com.riteshsahu.SMSBackupRestore&amp;hl=en">SMS Backup &amp; Restore</a>.
url: http://sms-fixer.ianonavy.com
- title: ACM Linux Mirrors
image: mirrors.png
description: Friends at WPI wanted to <code>apt-get upgrade</code> and <code>pacman -Syu</code> at lightning speed, so I made it happen.
url: http://mirrors.acm.wpi.edu/
- title: MathHammer 40k
image: mathhammer.png
description: Damage stats calculator app for WarHammer 40k I made in high school for my physics teacher. My first paid gig!
url: <a href="https://play.google.com/store/apps/details?id=com.mathhammer40k.mathhammer&amp;hl=en">Go to site &rarr;</a>
---
{% for project in page.projects %}
<div class="projects-project">
<h2>{{ project.title }}</h2>
{{ project.image }}
<img class="projects-screenshot" src="{{ "/img/" | append: project.image | prepend: site.baseurl }}">
<p>{{ project.description }}</p>
<p><a href="{{ project.url }}">Go to site &rarr;</a></p>
</div>
{% endfor %}