-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtesting.html
87 lines (81 loc) · 3.76 KB
/
testing.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
---
layout: 'default'
title: 'License Testing'
---
<!-- FCC Registration Number (FRN) -->
<div class="container mb-4 mb-md-5 text-center">
<h2>FCC Registration Number (FRN)</h2>
<p>It is highly recommended that you get a FCC Registration Number (FRN) before attending a testing session. It can take the place of a Social Security Number and in some cases, it will be the only number you will be allowed to use. Remember to write it down or store it someplace safe after you receive it. You will need to bring it with you to testing sessions.</p>
<a class="btn btn-primary" href="https://apps.fcc.gov/cores/userLogin.do" target="_blank">Get FRN</a>
</div>
<!-- End FCC Registration Number (FRN) -->
<!-- Planned Sessions -->
<div class="jumbotron jumbotron-fluid mb-4 mb-md-5">
<div class="container text-center">
<h2>Planned Sessions</h2>
<hr>
{% assign count = 0 %}
{% assign curDate = site.time | date: '%s' %}
{% for event in site.events %}
{% assign eventStartDate = event.date | date: '%s' %}
{% if eventStartDate > curDate and event.tags contains 'tests' %}
{% assign count = count | plus: 1 %}
{% endif %}
{% endfor %}
{% if count > 0 %}
<div class="card-deck card-deck-4">
{% assign i = 0 %}
{% for event in site.events reversed %}
{% assign eventStartDate = event.date | date: '%s' %}
{% if eventStartDate > curDate and event.tags contains 'tests' and i < 4 %}
<div class="card mb-4 mx-auto shadow-sm">
<div class="card-body">
<h5 class="card-title"><a href="{{ event.url }}">{{ event.title }}</a></h5>
{% if event.status == 'Attending' %}
<span class="badge badge-success">Attending</span>
{% endif %}
{% if event.status == 'Planned' %}
<span class="badge badge-info">Planned</span>
{% endif %}
{% if event.status == 'Cancelled' %}
<span class="badge badge-danger">Cancelled</span>
{% endif %}
<p class="card-text">{{ event.excerpt }}</p>
</div>
<div class="card-footer">
<ul class="list-unstyled">
<li>{{ event.location }}</li>
<li>{{ event.street }}</li>
<li>{{ event.address }}</li>
<li>{{ event.date | date: "%-d %B %Y" }}</li>
<li>{{ event.time | date: "%-d %B %Y" }}</li>
<li><a href="{{ event.url }}">[ More ]</a></li>
</ul>
</div>
</div>
{% assign i = i | plus: 1 %}
{% endif %}
{% endfor %}
</div>
{% else %}
<p>There are currently no testing sessions planned.</p>
{% endif %}
</div>
</div>
<!-- End Planned Sessions -->
<!-- ARRL & Laurel Testing Sessions -->
<div class="container mb-4 mb-md-5 text-center">
<div class="row">
<div class="col-md-6 mb-4">
<h3>ARRL Testing Sessions</h3>
<p>These are a list of ARRL testing sessions. We will not be attending most of these. Check out our upcoming sessions for testing events we will be attending and providing transportation. The Amateur Radio Club at UNC Charlotte and ARRL are not affiliated. The ARRL Exam currently costs $15.00.</p>
<a href="https://arrl.org/find-an-amateur-radio-license-exam-session" class="btn btn-primary" target="_blank">View</a>
</div>
<div class="col-md-6 mb-4">
<h3>Laurel Testing Sessions</h3>
<p>These are a list of Laurel testing sessions. We will not be attending most of these. Check out our upcoming sessions for testing events we will be attending and providing transportation. The Amateur Radio Club at UNC Charlotte and Laurel are not affiliated. The Laurel Exam is currently free.</p>
<a href="https://laurelvec.com/?pg=exams" class="btn btn-primary" target="_blank">View</a>
</div>
</div>
</div>
<!-- End ARRL & Laurel Testing Sessions -->