-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathabout.html
144 lines (137 loc) · 4.59 KB
/
about.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="summary" name="twitter:card" />
<meta
content="http://pslmodels.org/imgs/PolicySimLibrary-1000px.png"
name="twitter:image"
/>
<meta content="Catalog" name="twitter:title" />
<title>PSL</title>
<script
async=""
src="https://www.googletagmanager.com/gtag/js?id=UA-128365658-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-128365658-1");
</script>
<link
crossorigin="anonymous"
href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
crossorigin="anonymous"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick-theme.css"
/>
<link href="../CSS/catalog.css" rel="stylesheet" />
</head>
<body id="page">
<div id="navbar"></div>
<div class="banner">
<div class="banner-content">
<div class="banner-text">
<h1>About</h1>
<h5>The Policy Simulation Library (PSL) is a collection of models and
other software for public-policy decisionmaking.</h5>
</div>
<br />
<div class="banner-image"></div>
</div>
</div>
<div class="text-box">
<div class="box-header"></div>
<div class="box-content"><p>
PSL is developed by
independent projects that meet standards for transparency and
accessibility. The PSL community encourages collaborative contribution
and makes the tools it develops accessible to a diverse group of
users.
</p>
<p>
The PSL's online home for users is
<a href="https://www.pslmodels.org">https://www.pslmodels.org</a>.
</p>
<p>
If you would like to learn more about PSL plans, see our
<a href="Community/roadmap.html">roadmap</a>.
</p>
<p>
If you would like to make a technical contribution to PSL, please
review the <a href="Community/contribute.html">contributor guide</a>.
</p>
<p>
You can reach PSL developers and users to discuss how to get started
by opening an issue or joining the PSL Community
<a href="https://matrix.to/#/!oZnjlINzAXrgdzXEfZ:matrix.org"
>chat room</a
>.
</p>
<p>
PSL is governed by a
<a href="Community/council.html">leadership council</a> of project
representatives.
</p>
<p>
The PSL community is respectful, warm, and open to everyone. In order
to ensure that the project remain that way for all participants, we
have officially adopted the
<a href="https://numfocus.org/code-of-conduct"
>NumFOCUS Code of Conduct</a
>
as our own, with the exception that infractions should be reported to
a PSL leadership council member.
</p></div>
</div>
<div id="footer"></div>
</body>
<script>
{
fetch('/layout/navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar').innerHTML = data;
});
fetch('/layout/footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
});
}
</script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
</html>