-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (75 loc) · 3.41 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ergo</title>
<meta name="description" content="This is a the home page for ergo, a beautiful cms" />
<meta name="viewport" content="width=device-width,maximum-scale=1.0" />
<meta property="author" content="craig" />
<link href="/styles.css" rel="stylesheet" type="text/css" />
<link href="/exstyles.css" rel="stylesheet" type="text/css" />
<link rel="alternate" type="application/rss+xml" title="News & Articles Feed" href="/rss.xml" />
<!--
____ ____ ___ __ ___ _ _ ____
O ( __)( _ \ / __) / \ ___ / __)( \/ )/ ___)
) _) ) /( (_ \( O )(___)( (__ / \/ \\___ \
O O (____)(__\_) \___/ \__/ \___)\_)(_/(____/
-->
</head>
<body>
<!-- The 'extracss' has been added here -->
<div id="banner" class="s home" style="background-image:url(/images/home.jpg)">
<div id="nav">
<!-- change your menu at _partials/menu.tex -->
<ul>
<li><a href="/">home</a></li>
<li><a href="/articles.html">articles</a></li>
<li><a href="/themes.html">themes</a></li>
<li><a href="/plugins.html">plugins</a></li>
<li><a href="/blog.html">blog</a></li>
<li><a href="/about.html">about</a></li>
</ul>
</div>
<h1 id="title"><a href="#content"><b>∴</b> Ergo</a></h1>
</div>
<div class="s home">
<div class="c">
<div id="content">
<h1><a href="/index.html">Ergo</a></h1>
<dl>
<dt>Ergo scribo.</dt>
<dd>Therefore, I Write.</dd>
<dt>Scripsi. Ergo, est pulchra.</dt>
<dd>I have written. Therefore, it is beautiful.<sup class="footnote" id="fnr1"><a href="#fn1">1</a></sup></dd>
</dl>
<p></p>
<p style="text-align:center">∴ </p>
<p>Ergo is easy. It is light. It is fast. It is ∴ effortless. This site is built with it, with minimal fuss, but amazing control. Check out the <a href="/articles.html">Docs</a>, <a href="/themes.html">Themes</a> or <a href="/plugins.html">Plugins</a>.</p>
<h2>Installation and Getting Started</h2>
<p>You’ll need node.js to be installed first. If you don’t have node installed, then head over to <a href="https://nodejs.org/en/">nodejs</a> and download an <span class="caps">LTS</span> version. Ergo supports version 4.x and 6.x and is regularly tested on them.</p>
<p>Try playing with the skeleton file:</p>
<pre><code>npm install ergo-cli -g
ergo init Blog
cd Blog
ergo view -b -w</code></pre>
<p>Don’t like the theme? Try Smart Bootstrap’s ‘Clean Blog’ (or <a href="https://ergo-cms.github.io/themes">view more here</a>):</p>
<pre><code>ergo theme install clean-blog
ergo view -c -b -w</code></pre>
<p>Switch back the original theme? </p>
<pre><code>ergo theme switch ergo-simple
ergo view -c -b -w</code></pre>
<p>Don’t want to install globally? No problem:</p>
<pre><code>git clone https://github.com/ergo-cms/ergo-skel.git Blog
cd Blog
npm install
npm run ergo -- view -b -w</code></pre>
<p>Just use <code>npm run ergo -- ...</code> in place of running <code>ergo ...</code> for all commands!</p>
<p style="margin-top:5em" class="small footnote" id="fn1"><a href="#fnr1"><sup>1</sup></a> ∴ is the mathematical symbol for ‘therefore’</p>
</div>
</div>
</div>
<div id="footer" class="s">
<div class="c">The official <a href="https://ergo-cms.github.io/">∴ ergo-cms</a> site</a> | Copyright © ergo-cms ∴, 2017. <a id="rss" href="/rss.xml"><i class="flaticon-rss"></i></a></div>
</div>
</body>
</html>