-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (102 loc) · 3.88 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
<!DOCTYPE html>
<html>
<head>
<title>Lyon Bros. <3 you!</title>
<meta http-equiv="Content-Type" content="test/html; charset=utf-8">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="/css/reset.css">
<link rel="stylesheet" href="/css/site.css">
<link rel="stylesheet" href="/css/rain.css">
<script src="/js/bluebird.js"></script>
<script src="/js/composer.min.js"></script>
<script src="/js/velocity.min.js"></script>
<script src="/js/main.js"></script>
<script src="/js/rain.js"></script>
<script src="/js/projects.js"></script>
</head>
<body onload="init()">
<div id="rain"></div>
<div id="lyon" class="clear">
<header>
<h1><a href="/"><span>Lyon Bros.</span></a></h1>
<p>
Projects that change the world.
</p>
</header>
<content>
<ul>
<li>
<a href="https://github.com/lyonbros/faxrobot" title="Fax Robot: Upload documents, send faxes. Low price tag.">
<img src="/images/projects/faxrobot/logo.png" width="150" height="150" alt="">
</a>
<div class="desc" rel="faxrobot">
Faxrobot is a fax sending app, supporting a range of
document formats and with a low price tag.
</div>
</li>
<li>
<a href="https://turtl.it" title="Turtl: Open source, private Evernote alternative">
<img src="/images/projects/turtl/logo.png" width="150" height="150" alt="">
</a>
<div class="desc" rel="turtl">
Turtl is an open-source, private Evernote alternative. It
encrypts all your data before sending it to the server,
but also lets you private share with others.
</div>
</li>
<!--
<li>
<a href="https://flagger.io" title="Flagger: Give the NSA the finger. Tell them you don't support unconstitutional surveillance.">
<img src="/images/projects/flagger/logo.png" width="150" height="150" alt="">
</a>
<div class="desc" rel="flagger">
Flagger is a browser extension to give the middle finger
to the NSA and their <em>unconstitutional</em> practices.
</div>
</li>
-->
<li>
<a href="https://lyonbros.github.io/composer.js" title="Composer: Build your next single-page application with this.">
<img src="/images/projects/composer/logo.png" width="150" height="150" alt="">
</a>
<div class="desc" rel="composer">
Composer.js is a non-opinionated javascript framework for
building single-page applications. Composer gives you
the tools you need to build then steps out of your way.
</div>
</li>
<li>
<a href="https://github.com/orthecreedence/wookie" title="Wookie: Common Lisp's best async app server">
<img src="/images/projects/wookie/logo.png" width="150" height="150" alt="">
</a>
<div class="desc" rel="wookie">
Wookie is an async app server for Common Lisp, running atop
cl-async. Express.js is to Node as Wookie is to Lisp.
</div>
</li>
</ul>
</content>
<span class="clearme"></span>
<footer>
©2019 Lyon Bros LLC | <a href="https://github.com/lyonbros">Github</a>
</footer>
</div>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//piwik.lyonbros.com/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 6]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//piwik.lyonbros.com/piwik.php?idsite=6" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>