-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (96 loc) · 4.26 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Agilion - web application development, Vermont USA">
<meta name="author" content="Adam Bouchard, Agilion">
<meta property="og:site_name" content="Agilion"/>
<meta property="og:title" content="Agilion"/>
<meta property="og:url" content="http://www.agilion.com/"/>
<meta property="og:type" content="website"/>
<title>Agilion</title>
<link rel="shortcut icon" type="image/png" href="assets/agilion-favicon.png"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<style>
html, body {
background-color: rgb(255, 249, 245);
font-family: Tahoma, sans-serif;
}
</style>
</head>
<body>
<section class="section">
<div class="container content has-text-centered">
<img src="assets/logo.png" width="150px" />
<p class="mt-1">a.k.a<br/> <a href="https://adambouchard.com">Adam Bouchard</a></p>
</div>
</section>
<!--
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-one-third has-background-dark">
<div
class="p-5 m-5 is-clickable has-text-centered"
onclick="window.location.href='https://inspirehq.team/'"
>
<img src="assets/InspireHQ_White_without_Ave.png" title="InspireHQ" aria-label="InspireHQ" />
<p class="title has-text-white is-uppercase is-size-7">Clarity. Coordination. Conviction</p>
<span class="mt-5 has-text-light" style="border-bottom: 1px solid #fff">learn more</span>
</div>
</div>
</div>
</div>
</section>
-->
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-half content has-text-centered">
<h2 class="is-uppercase">with gratitude</h2>
<p class="mt-5">We no longer offer contract development services.</p>
<p>A special thank you to clients, partners, employees and friends who've been involved with Agilion over the years.</p>
<p class="mt-5">selected projects</p>
<div class="columns is-multiline is-centered mt-5" id="linkContainer"></div>
</div>
</div>
</div>
</section>
<script>
const linkContainer = document.getElementById('linkContainer');
const links = [
{name: 'Flatfile', logo: '', url: 'https://flatfile.com/'},
{name: 'Skillways', logo: '', url: 'https://www.easelearning.com/skillways'},
{name: 'Brandhub', logo: '', url: 'https://www.selectdesign.com/brandhub/'},
{name: 'Inboxtel', logo: '', url: 'https://inboxtel.co/'},
{name: 'OppIQ', logo: '', url: 'https://opportunityiq.co/'},
{name: 'Mercatus', logo: '', url: ''},
{name: 'Flow', logo: '', url: ''},
{name: 'Wishbone', logo: '', url: ''},
{name: 'Steepster', logo: '', url: ''},
{name: 'Venture Co', logo: '', url: ''},
{name: 'Pwnie Express', logo: '', url: ''},
{name: 'Mediator Resources', logo: '', url: ''},
{name: 'Sunovision', logo: '', url: ''},
{name: 'Companio', logo: '', url: ''},
{name: 'Collins Aerospace', logo: '', url: ''},
{name: 'KnowledgeWave', logo: '', url: ''},
{name: 'Fentrend', logo: '', url: ''},
{name: 'Draker', logo: '', url: ''},
{name: 'Notabli', logo: '', url: ''},
{name: 'Aprexis', logo: '', url: ''},
{name: 'Buyside FX', logo: '', url: ''},
{name: 'Solel Solutions', logo: '', url: ''},
{name: 'Sweetstakes', logo: '', url: ''},
{name: 'Compliance Canary', logo: '', url: ''},
]
let linkReferences = ''
links.forEach(function (i) {
// linkReferences += `<div class="column is-half p-5"><a href="${i.url}" target="_blank" class="is-uppercase">${i.name}</a></div>`
linkReferences += `<div class="column is-half p-5"><span class="is-uppercase">${i.name}</span></div>`
});
linkContainer.innerHTML = linkReferences
</script>
</body>
</html>