summaryrefslogtreecommitdiff
path: root/site/templates/project.liquid
blob: b54722d393cf5d4170c607bb8a4aa8a25afda425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="entry">
	<span>
		<span class="postname">{{project.title}}</span>

		<div class="gallery" id="okgallery">
    {% if project.video.token %}
			<div class="cell video" style="background-image:url({{ project.video.thumb }})" data-video="https://player.vimeo.com/video/{{ project.video.token }}" data-caption="{{ project.video.title }}"></div>
    {% endif %}
    {% for image in project.images %}
		  <div class="cell" data-caption="{{ image.caption }}"><img src="{{ image.uri }}"></div>
    {% endfor %}
		</div>
    <div class="caption"></div>
    <div class="content">
      {{ project.description | newline_to_br }}
    </div>
		<div class="credit">
      <img src="{{static}}/assets/images/fb2.png" class="fb">
      <img src="{{static}}/assets/images/tw2.png" class="tw">
		</div>
  </span>
</div>