-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (111 loc) · 3.3 KB
/
index.html
File metadata and controls
122 lines (111 loc) · 3.3 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Open Source at Addepar</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.svg">
<link rel="apple-touch-icon" href="/img/apple-touch-icon.png">
<meta name="viewport" content="width=device-width initial-scale=1">
<style type="text/css">
@font-face {
font-family: 'Univers-Next';
src: url('/fonts/report-UniversNextW01Regular.woff') format('woff'),
url('/fonts/report-UniversNextW01Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
html {
height: 100%;
}
html, body {
width: 100%;
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-family: 'Univers-Next';
line-height: 1.4;
color: #333;
}
body {
padding: 64px 0 128px;
display: flex;
justify-content: center;
}
.container {
flex: 1 1 auto;
min-width: 280px;
max-width: 510px;
height: 100%;
padding: 0 16px 0;
}
.main {
background: #ffffff;
padding: 32px;
}
h1 {
text-align: center;
font-weight: normal;
}
p {
margin-top: 0;
}
p.highlight {
background: #faede3;
padding: 0.5rem;
border: 1px solid #c7bcb2;
}
p:last-child {
margin-bottom: 0;
}
li {
margin-bottom: 3px;
}
.addepar-logo {
width: 100%;
height: 150px;
padding: 32px 0 32px;
box-sizing: border-box;
text-align: center;
margin-left: -10px;
}
a {
color: #0F5078;
}
</style>
</head>
<body>
<div class="container">
<div class="main" role="main">
<img class="addepar-logo" src="/img/Addepar-Logo-Stacked-Blk.svg" alt="Addepar logo"/>
<h1>Open Source at Addepar</h1>
<p class="highlight">
Interested in working at Addepar?
<a href="https://addepar.com/careers">addepar.com/careers</a>.
</p>
<p>
Addepar maintains several active OSS projects & repos:
</p>
<ul>
<li><a href="https://opensource.addepar.com/ember-table/">Ember Table</a></li>
<li><a href="https://github.com/Addepar/ember-json-viewer">ember-json-viewer</a></li>
<li><a href="https://github.com/Addepar/github-metrics">github-metrics</a></li>
<li><a href="https://github.com/Addepar/ember-classy-page-object">ember-classy-page-object</a></li>
</ul>
<p>
Generally, you can find our work <a href="https://github.com/Addepar/">on GitHub</a>.
</p>
<p>
Addepar is a formal participant in OSS communities, especially
in the Ember.js (<a href="https://emberjs.com/teams/">framework and steering commitees</a>) and Java
(<a href="https://jcp.org/en/home/index">JCP</a> member) ecosystems.
</p>
<p>
<a href="https://addepar.com/">addepar.com</a> |
© 2023 Addepar, Inc. All rights reserved.
</p>
</div>
</div>
</body>
</html>