public
Description: A chyrp feather for posting portfolio items.
Homepage: http://guitsaru.com
Clone URL: git://github.com/guitsaru/project-feather.git
Click here to lend your support to: project-feather and make a donation at www.pledgie.com !
project-feather / project.twig
100644 18 lines (17 sloc) 0.602 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "content/post.twig" %}
 
{% block content %}
{% if post['title'] %}
<h2 class="title">
<a href="$post.url" rel="bookmark" title="${ "Permanent Link to" | translate } &quot;$post.title&quot;">$post.title</a>
</h2>
{% endif %}
  ${ feathers['project'].image_tag_for(post, 200) }
  <div class="description">
<h5><em>Website</em> - <a href="$post.project_url">$post.project_url</a></h5>
{% if post['client'] %}
<h5><em>Client</em> - <a href="$post.client_url">$post.client</a></h5>
{% endif %}
<div class="clear"></div>
$post.description
  </div>
{% endblock %}