-
Notifications
You must be signed in to change notification settings - Fork 1
/
oscargold.html
58 lines (42 loc) · 1.13 KB
/
oscargold.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
47
48
49
50
51
52
53
54
55
56
57
58
---
layout: page
title: "Oscar Gold"
permalink: /oscargold/
---
<head>
<meta charset="utf-8">
</head>
<div class="og-intro">
<p class="og-intro-p">
Everything listed here is, at least as I can see it, a property of someone else. People, Places, and Predicaments were created by someone else(r). [Insert obligatory boilerplate.]
</div>
<div id="og-table-wrapper">
{% for og-award in site.data.oscar-gold.og-awards %}
<ul class="og-award-badge">
<div class="award-title">
<span class="award-title-txt">{{ og-award.topicttl }}</span>
</div>
<div class="og-tb-bar">
{% if og-award.tb1 %}
<div class="og1-tb">
<img src="{{ site.url }}/assets/tb/{{og-award.tb1}}" alt="" class="og-award-tb-img">
</div>
{% endif %}
{% if og-award.tbA %}
<div class="oga-tb">
<img src="{{ site.url }}/assets/tb/{{og-award.tbA}}" alt="" class="og-award-tb-img">
</div>
{% endif %}
</div>
<div class="og-title">
<span class="og-title-txt">( {{ og-award.name }} )</p>
</div>
<div class="og-desc">
<p>{{ og-award.topicdesc }}</p>
</div>
<div class="og-date">
<p>[ {{ og-award.dateawarded }} ]</p>
</div>
</ul>
{% endfor %}
</div>