6
6
< main >
7
7
{% include jumbotron.html %}
8
8
< div class ="container ">
9
+ < div class ="row ">
10
+ < div class ="col-12 ">
11
+ {% include standards.html %}
12
+ </ div >
13
+ </ div >
9
14
< div class ="row ">
10
15
< div class ="col-12 ">
11
16
< div class ="table-responsive ">
12
-
13
17
< table class ="table table-bordered table-hover ">
14
18
< thead >
15
19
< tr >
20
+ < th scope ="col " class ="p-3 "> Topics</ th >
16
21
< th scope ="col " class ="p-3 "> Standard</ th >
17
22
< th scope ="col " class ="p-3 "> Description</ th >
23
+ < th scope ="col " class ="p-3 "> Status</ th >
18
24
</ tr >
19
25
</ thead >
20
26
< tbody >
21
27
{% for page in site.pages %}
22
28
{% if page.topics and page.topics contains 'Standards' %}
23
29
< tr >
30
+ < td class ="p-3 ">
31
+ < div class ="d-flex flex-wrap ">
32
+ {% for topic in page.topics %}
33
+ {% if topic != 'Standards' %}
34
+ {% assign topic_slug = topic | downcase | replace: " ", "-" %}
35
+ {% assign topic_data = site.topics | where: "title", topic | first %}
36
+ {% if topic_data.url %}
37
+ {% assign topic_url = topic_data.url %}
38
+ {% else %}
39
+ {% assign topic_url = '/topics/' | append: topic_slug %}
40
+ {% endif %}
41
+ < a href ="{{ topic_url }} " class ="d-inline-flex align-items-center mb-1 me-1 text-decoration-none ">
42
+ {% if topic_data and topic_data.icon %}
43
+ < i class ="{{ topic_data.icon }} me-2 " title ="{{ topic }} "> </ i >
44
+ {% endif %}
45
+ </ a >
46
+ {% endif %}
47
+ {% endfor %}
48
+ </ div >
49
+ </ td >
24
50
< td class ="p-3 ">
25
51
< div >
26
52
< a href ="{{ site.baseurl }}{{ page.url }} "> {{ page.title }}</ a >
31
57
{{ page.description }}
32
58
</ div >
33
59
</ td >
60
+ < td class ="p-3 ">
61
+ < div >
62
+ < a href ="https://scangov.org ">
63
+ < i class ="fa-solid fa-signal "> </ i >
64
+ </ a >
65
+ </ div >
66
+ </ td >
34
67
</ tr >
35
68
{% endif %}
36
69
{% endfor %}
37
70
</ tbody >
38
71
</ table >
39
-
40
72
</ div >
41
73
</ div >
42
74
</ div >
75
+ < div class ="row ">
76
+ < div class ="col-12 ">
77
+ {% include services.html %}
78
+ </ div >
79
+ </ div >
43
80
</ div >
44
81
</ main >
45
82
{% include footer.html %}
0 commit comments