forked from cryogen-project/cryogen-project.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (106 loc) · 5.23 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8"/>
<title>Cryogen: Simple static sites</title>
<link rel="icon" href="/img/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/styles/color-brewer.min.css">
<link href='http://fonts.googleapis.com/css?family=Alegreya:700italic,400,700' rel='stylesheet'
type='text/css'>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,400italic">
<link href="/css/screen.css" rel="stylesheet" type="text/css" />
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-56703143-2', 'auto');
ga('send', 'pageview');
</script>
<meta name="keywords" content="cryogen, clojure, blog engine, static site, static site generator, leiningen">
<meta name="description"
content="Cryogen is a simple static site generator built with Clojure and designed by Carmen La. It's shipped on Leiningen so setup is simple and fuss free.">
<meta name="canonical" content="http://cryogenweb.org">
</head>
<body>
<div class="container">
<header>
<div class="row">
<div class="col-lg-5 col-md-5 col-sm-6">
<a href="/index.html"><img height="120px" src="/img/banner.png"/>
<h1>Cryogen</h1></a>
<h2 id="slogan" class="faint">Static sites generated with Clojure</h2>
</div>
<div class="col-lg-7 col-md-7 col-sm-6">
<nav>
<ul id="menu" class="nav nav-pills navbar-right">
<li><a id="home-link" href="/index.html">Home</a></li>
<li><a id="docs-link" href="/docs/home.html">Doc<span class="show-on-mobile">s</span><span
class="hide-on-mobile">umentation</span></a></li>
<li><a href="https://github.com/cryogen-project/cryogen"><span class="hide-on-mobile">View on </span>GitHub</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<div id="main" class="row">
<div id="perks" class="row">
<div class="col-lg-4 col-md-4 col-sm-4">
<h2>Simple</h2>
<p>Shipped as a template on Leiningen, a Clojure build tool. No need to configure databases - it just works
out of the box.</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<h2>Static</h2>
<p>Clear separation between your content and layouts makes for fuss free customization. CSS and JavaScript
can be easily added.</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<h2>Automated</h2>
<p>Don't worry about linking up your posts or managing your sitemap and RSS feeds, Cryogen does it all.</p>
</div>
</div>
<h2>Get Started in Seconds</h2>
<div class="row">
<div class="col-lg-7 col-md-7 col-sm-6 instructions">
<ol>
<li>Install <a href="https://leiningen.org/">Leiningen</a> or <a href="https://clojure.org/guides/deps_and_cli">Clojure CLI</a> with <a href="https://github.com/seancorfield/clj-new/">clj-new</a></li>
<li>Create a new cryogen project</li>
<li>Start the server and visit <code>localhost:3000</code> in your browser</li>
</ol>
</div>
<div class="col-lg-5 col-md-5 col-sm-6">
<pre class="shell">
<p class="title">Quick Start Guide</p><code class="bash"><span class="dir">~ </span><span
class="prompt">$ </span><span class="cmd">lein new cryogen my-blog</span><span class="comment"> # or: </span>
<span class="dir">~ </span><span
class="prompt">$ </span><span class="cmd">clojure -X:new :template cryogen :name me.my-blog</span>
<span class="dir">~ </span><span class="prompt">$ </span><span class="cmd">cd *my-blog</span>
<span class="dir">~/my-blog </span><span class="prompt">$ </span><span
class="cmd">lein serve</span>
Started server on port 3000</code></pre>
</div>
</div>
</div>
<footer class="text-center text-muted">
<p>Copyright © 2014 - <span id="cpyear"></span> <span>Carmen La</span><br>
Powered by <a href="https://github.com/cryogen-project/cryogen">Cryogen</a></p>
</footer>
</div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="/js/main.js" type="text/javascript"></script>
<script src="/js/highlight.pack.js" type="text/javascript"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>