-
Notifications
You must be signed in to change notification settings - Fork 1
/
primary.html
87 lines (87 loc) · 3.18 KB
/
primary.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: Primary Listings
layout: default
permalink: /primary
navbar_title: Primary Art
---
<br />
{% include warning-primary.html %}
<br />
{% include info-primary.html %}
<br />
<div class="listings">
{% for listing in site.primary %}
<hr />
<br />
<div class="listing">
<div class="listing-info">
<div class="listing-info-heading">
<h2><strong>{{- listing.art_title -}}</strong></h2>
</div>
<div class="listing-info-subheading">
<h3>{{ listing.list_count }} editions listed ({{ listing.mint_count }} total)</h3>
</div>
<div class="listing-info-table">
<div class="listing-info-table-row">
<div class="listing-info-table-cell-left">
Release Date
</div>
<div class="listing-info-table-cell-right">
{{- listing.mint_date | date: "%-d %B %Y" -}}
</div>
</div>
<div class="listing-info-table-row">
<div class="listing-info-table-cell-left">
Platform
</div>
<div class="listing-info-table-cell-right">
{{- listing.listing_platform -}}
</div>
</div>
<div class="listing-info-table-row">
<div class="listing-info-table-cell-left">
Media Type
</div>
<div class="listing-info-table-cell-right">
{{- listing.media_type -}}
</div>
</div>
<div class="listing-info-table-row">
<div class="listing-info-table-cell-left">
Initial Price
</div>
<div class="listing-info-table-cell-right">
{{ listing.list_price_initial }} {{ listing.currency_name }} ({{ listing.currency_symbol }})
</div>
</div>
<div class="listing-info-table-row">
<div class="listing-info-table-cell-left">
Final Price
</div>
<div class="listing-info-table-cell-right">
{{ listing.list_price_final }} {{ listing.currency_name }} ({{ listing.currency_symbol }})
</div>
</div>
</div>
<div class="listing-info-link-internal">
<h3><strong><a href="{{- listing.url -}}">More Details</a></strong></h3>
</div>
<div class="listing-info-link-external">
<h2><strong><a href="{{- listing.listing_url -}}">View on {{ listing.listing_platform }}</a></strong></h2>
</div>
</div>
<div class="listing-preview">
<div class="listing-preview-image">
<img src="/media/preview-{{- listing.objkt_number -}}.png">
</div>
</div>
</div>
<br />
{% endfor %}
<hr />
</div>
<br />
<br />
<br />
{% include warning-primary.html %}
<br />