-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
161 lines (120 loc) · 4.6 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Yi</title>
<link rel="stylesheet" type="text/css" href="./css/default.css" />
<link href="https://yi-editor.github.io/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM feed: Yi blog" />
<!-- jQuery & jQueryUI -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.3/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css" />
<!-- Pandoc Style CSS -->
<link rel="stylesheet" type="text/css" href="./css/syntax.css" />
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- TOCify -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js"></script>
<link rel="stylesheet" type="text/css" href="./css/tocify.css" />
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./">Yi</a>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<!-- TODO: Take in a list and loop through it -->
<li><a href="./">Home</a></li>
<li><a href="./pages/about/">About</a></li>
<li><a href="./pages/installing/">Install</a></li>
<li><a href="./pages/contact/">Contact</a></li>
<li><a href="./archive/">Archive</a></li>
</ul>
</div>
</div>
</div>
<div id="content" class="container">
<h1>Home</h1>
<img src="./images/yi-lambda-fat.svg" style="float: right; margin: 20px;" />
<p>Yi is a text editor written in Haskell and extensible in Haskell. The goal of Yi is to provide a flexible, powerful and correct editor core scriptable in Haskell.</p>
<h2>Posts:</h2>
<ul>
<li>
<a href="./posts/2017-09-07-improving-on-vi-improved/">Improving on Vi Improved</a> - September 7, 2017
</li>
<li>
<a href="./posts/2017-07-29-modularization/">Modularization</a> - July 29, 2017
</li>
<li>
<a href="./posts/2017-07-25-release-0.14/">Release 0.14</a> - July 25, 2017
</li>
<li>
<a href="./posts/2017-01-06-dyre/">Dynamic and static compilation</a> - January 6, 2017
</li>
<li>
<a href="./posts/2014-09-05-oop/">Prototypes - Encoding Object Oriented inheritance in Haskell</a> - September 5, 2014
</li>
<li>
<a href="./posts/2014-09-04-incremental-parsing/">Incremental parsing</a> - September 4, 2014
</li>
<li>
<a href="./posts/2014-09-03-demo/">Demo</a> - September 3, 2014
</li>
<li>
<a href="./posts/2014-09-02-configuration/">Configuration</a> - September 2, 2014
</li>
<li>
<a href="./posts/2014-09-01-structure/">Overall Structure</a> - September 1, 2014
</li>
</ul>
<h2>Pages</h2>
<ul>
<li>
<a href="./pages/about-M-x/">About M-x/:yi</a>
</li>
<li>
<a href="./pages/about/">About</a>
</li>
<li>
<a href="./pages/contact/">Contact</a>
</li>
<li>
<a href="./pages/installing/">Installing/hacking Yi</a>
</li>
<li>
<a href="./pages/modular/">Modularizing the config</a>
</li>
<li>
<a href="./pages/problems/">Problems with Yi</a>
</li>
<li>
<a href="./pages/reading-material/">Reading material</a>
</li>
<li>
<a href="./pages/release-notes/">Release notes</a>
</li>
<li>
<a href="./pages/vim-config/">Vim configuration</a>
</li>
<li>
<a href="./pages/vimgolf/">Vimgolf client</a>
</li>
</ul>
</div>
<div id="footer">
Site proudly generated by <a href="http://jaspervdj.be/hakyll">Hakyll</a>
<p>Copyright (C) 2015-2017, Yi developers</p>
</div>
</body>
</html>