forked from masenf/kf7hvm-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qso.html
36 lines (35 loc) · 883 Bytes
/
qso.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
---
layout: page
title: QSO Logs
permalink: /qso/
---
<table class="qso-table">
<tr>
<td>Time</td>
<td>Frequency</td>
<td>Station</td>
<td>Comment</td>
</tr>
{% assign qsos = site.data.qso | where: "m_call","KF7HVM" | sort: "start" | reverse %}
{% for qso in qsos %}
<tr>
<td>
{% if qso.start %}
<div class="qso-date">{{- qso.start | date_to_xmlschema -}}</div>
{% else %}
<div class="qso-date">{{- qso.date | date_to_xmlschema -}}</div>
{% endif %}
<div class="qso-m_loc">{{ qso.m_loc }}</div>
</td>
<td>
<div class="qso-frequency">{{ qso.frequency }}</div>
<div class="qso-mode">{{ qso.mode }}</div>
</td>
<td>
<div class="qso-t_call">{{ qso.t_call }}</div>
<div class="qso-t_loc">{{ qso.t_loc }}</div>
</td>
<td>{{ qso.comment }}</td>
</tr>
{% endfor %}
</table>