-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebgl.html
47 lines (40 loc) · 1.03 KB
/
webgl.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
38
39
40
41
42
43
44
45
46
---
layout: page
title: Generic WebGL Experiments
subtitle: Just a list of existing experiments using raw WebGL
use-site-title: true
---
<div class="posts-list">
{% for exer in site.webgl %}
<article class="post-preview">
<a href="{{ exer.url | prepend: site.baseurl }}" target="_blank">
<h2 class="post-title">{{ exer.title }}</h2>
{% if exer.subtitle %}
<h3 class="post-subtitle">
{{ exer.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">
{{ exer.date | date: "%Y-%m-%d" }}
</p>
<div class="post-entry-container">
<div class="post-entry">
{{ exer.description }}
</div>
</div>
{% if exer.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in exer.tags %}
<a href="{{ site.baseurl }}/tags#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
{% else %}
{{ exer.tags | join: ", " }}
{% endif %}
</div>
{% endif %}
</article>
{% endfor %}
</div>