-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (126 loc) · 4.4 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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="luminus, clojure, framework, leiningen">
<meta name="canonical" content="http://luminusweb.net">
<title>Luminus - a Clojure web framework</title>
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/styles/color-brewer.min.css">
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
<link href="/css/highlight.css" rel="stylesheet" type="text/css" />
<link href="/css/codestyle.css" rel="stylesheet" type="text/css" />
<link href="/css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="wrapper">
<div class="column-wrapper">
<div class="row">
<div id="logo">
<h1>
<a href="/">
<img src="/img/logo.png" alt="Luminus">
Luminus
</a>
</h1>
</div>
<nav>
<ul>
<li class="selected">
<a href="/">Home</a>
</li>
<li >
<a href="/docs/guestbook">
<span class="show-on-mobile">Docs</span>
<span class="hide-on-mobile">Documentation</span>
</a>
</li>
<li >
<a href="/contribute">
<span class="hide-on-mobile">Get Involved</span>
<span class="show-on-mobile">Contrib</span>
</a>
</li>
</ul>
</nav>
</div>
<div id="hero">
<h2>Clojure Web Development Made Simple</h2>
<p>
Luminus is a Clojure micro-framework based on a set of lightweight libraries. It aims to provide a robust, scalable, and easy to use platform. With Luminus you can focus on developing your app the way you want without any distractions.
</p>
</div>
</div>
</div>
</header>
<div class="wrapper">
<div class="row">
<div class="column column-33">
<div class="column-wrapper">
<h2>Developer Friendly</h2>
<p>
Start hacking immediately with the REPL and embedded development server
</p>
<ul class="slogan">
<li>Simple and easy to learn</li>
<li>REPL driven development</li>
<li>Powerful build tools</li>
</ul>
</div>
</div>
<div class="column column-33">
<div class="column-wrapper">
<h2>Productive</h2>
<p>
Choose productivity and performance by leveraging Clojure on the JVM
</p>
<ul class="slogan">
<li>Built on top of the JVM</li>
<li>Low overhead</li>
<li>Compiled for production</li>
</ul>
</div>
</div>
<div class="column column-33">
<div class="column-wrapper">
<h2>Modern Web & Mobile</h2>
<p>
Luminus is built for needs of modern web & mobile apps
</p>
<br>
<ul class="slogan">
<li>ClojureScript support</li>
<li>Stateless web tier</li>
<li>Excellent SQL/NoSQL support</li>
</ul>
</div>
</div>
</div>
<div class="column-wrapper" id="easy-start">
<p>Check out <b><a href="https://kit-clj.github.io/">Kit</a></b>, a successor to Luminus</p>
<br/>
<p>Using <a href="http://leiningen.org/">Leiningen</a>, getting started is as easy as:</p>
<pre class="bash hljs"><span class="prompt">$ </span><span class="cmd">lein new luminus my-app</span>
<span class="prompt">$ </span><span class="cmd">cd my-app</span>
<span class="prompt">$ </span><span class="cmd">lein run</span>
Started server on port <span class="hljs-number">3000</span></pre>
</div>
</div>
<footer>
<article class="wrapper">
<div class="column-wrapper">
<p>
Luminus framework is released under the <a href="http://opensource.org/licenses/MIT">MIT License</a>
-
Copyright ©
<span id="cpyear"></span>
</p>
</div>
</article>
</footer>
<script src="/js/highlight.pack.js" type="text/javascript"></script>
<script src="/js/site.js" type="text/javascript"></script>
</body>
</html>