-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (63 loc) · 3.09 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
<head>
<style type="text/css">
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #444;
padding: 0 10px
}
h1,
h2,
h3 {
line-height: 1.2
}
.logo {
margin: 10px 0px 0px -50px;
float: left;
}
.logo img {
height: 25px; width: 25px;
}
</style>
</head>
<body>
<div class="logo"
><a href="https://clj-commons.org/"
title="CLJ Commons (Home)"><img
alt="CLJ Commons Logo"
src="https://clj-commons.org/logo.png"></a></div>
<h1>CLJ Commons</h1>
<p><a href = "https://github.com/clj-commons">CLJ Commons</a> is a community-led project to build up the supporting infrastructure around Clojure to make it a
better experience for people new to Clojure, as well as existing Clojurists.</p>
<h2>Current Goals</h2>
<ul>
<li>
Adopt important Clojure libraries when the original maintainers no longer have the time or interest to keep them updated.
</li>
</ul>
<h2>Contributing</h2>
<p>We have set up a <a href = "http://github.com/clj-commons/meta">meta-repository</a> where you can file issues for projects you want CLJ Commons to adopt, or if you're interested in joining as a maintainer for a project that is dear to your heart.</p>
<p>You can read more about our <a href="https://clj-commons.org/accepting-projects.html">process for accepting projects</a> and <a href="https://clj-commons.org/maintaining-projects.html">how we expect projects to be maintained</a>.</p>
<h2>Projects</h2>
<p>You can see an <a href="https://clj-commons.org/projects.html">auto-generated list of projects we maintain</a> with their current maintainers.</p>
<h2>Who's Involved?</h2>
<p>The CLJ Commons leadership team is made up of <a href="https://github.com/slipset">Erik Assum</a>, <a href="https://github.com/danielcompton">Daniel Compton</a>, and <a href="https://github.com/seancorfield">Sean Corfield</a>. Adopted projects are maintained by many members of the Clojure community, and you could be one of them!</p>
<h2>Contact</h2>
<p>Please don't hesitate to contact us on the #clj-commons channel on the <a href = "http://clojurians.net">Clojurians</a> slack.</p>
<h2>Long Term Goals</h2>
<p>In addition to the current goals of maintaining projects, we would also like to be able to contribute in the following ways:</p>
<ul>
<li>
Improve the experience for beginning Clojure users by providing a clear, coherent, path towards adopting
Clojure,
</li>
<li>Improve the experience of using Clojure for existing users by shaving off its rough edges (error messages,
stack traces, cryptic docstrings) and providing a unified documentation repository,
</li>
<li>Provide a common set of tools and solutions for Clojure users to adopt to reduce duplication of work:
"Lifting the Lisp curse".
</li>
</ul>
</body>