-
Notifications
You must be signed in to change notification settings - Fork 1
/
companies.html
37 lines (36 loc) · 1.3 KB
/
companies.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
---
title: Companies
layout: default
---
<div class="header-title white ken-burn" data-parallax="scroll" data-position="top" data-natural-height="550" data-natural-width="1920"
data-image-src="">
<div class="container">
<div class="title-base">
<hr class="anima" />
<h1>Tech Companies in Central Kentucky</h1>
</div>
</div>
</div>
<div class="section-empty">
<div class="container content">
<hr class="space m" />
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Company</th>
<th>Website</th>
</tr>
</thead>
<tbody>
{% for company in site.data.companies %}
<tr>
<td>{% if company.Website %}<a class="text-primary" href="{{ company.Website }}" target="_blank">{{ company.Company }}</a>{% endif %}</td>
<td>{% if company.Website %}<a href="{{ company.Website }}" target="_blank"><i class="im-double-tap" style="font-size: 24px;"></i></a>{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>