forked from codius/codius.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (111 loc) · 5.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>§ Codius</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/cover.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<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-52908904-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="jumbotron wow fadeIn">
<h1 class="logo"><img src="assets/img/codiuslogo.png" alt="Codius"></h1>
<p class="lead">Smart contracts let you turn business logic, laws, and other rules into <code>code</code>.
<br/>Smart oracles, and our implementation Codius, are a simple and powerful system for running smart contracts.</p>
<p><a target="_blank" href="https://github.com/codius/codius/wiki/Smart-Oracles:-A-Simple,-Powerful-Approach-to-Smart-Contracts"><button type="button" class="btn btn-lg btn-primary white-paper"><span class="glyphicon glyphicon-paperclip"></span> Read the white paper</button></a></p>
</div>
<div class="cover-container container">
<div class="row well wow fadeIn">
<div class="col-md-12">
<ul>
<li><h4>Can be written in any programming language </h4></li>
<li><h4>Can interact with anything connected to the Internet </h4> </li>
<li><h4>Can encode any agreement you can encode as conditions and outcomes </h4></li>
<p class="prototype center">Codius code and examples coming in:</p>
<div id="countdown"></div>
</ul>
</div>
</div>
<div class="row community">
<div class="col-md-12 center">
<h1>§ Community</h1>
<div class="row">
<div class="col-lg-4 wow fadeInLeftBig">
<h2>Join the discussion</h2>
<span class="glyphicon glyphicon-comment"></span>
<p class="forum"><a target="_blank" class="btn btn-default" href="https://groups.google.com/forum/#!forum/codius/" role="button">View the forum</a></p>
</div>
<div class="col-lg-4 wow fadeInLeftBig">
<h2>Live chat</h2>
<span class="glyphicon glyphicon-bullhorn"></span>
<p class="forum"><a target="_blank" class="btn btn-default" href="https://gitter.im/codius/codius-chat" role="button">Join the chatroom</a></p>
</div>
<div class="col-lg-4 wow fadeInLeftBig">
<h2>Email updates</h2>
<span class="glyphicon glyphicon-envelope"></span>
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="//ripplelabs.us4.list-manage.com/subscribe/post?u=245dbc1c47849f034390dc5bf&id=f272cc8d28" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate navbar-form" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email form-control" id="mce-EMAIL" placeholder="email address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_245dbc1c47849f034390dc5bf_f272cc8d28" tabindex="-1" value=""></div>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button btn btn-default">
</form>
</div>
<!--End mc_embed_signup-->
</div>
</div>
</div>
</div>
</div>
<div class="mastfoot">
<div class="inner">
<hr>
<p>An Open Source project started by <a target="_blank" href="http://www.ripplelabs.com">Ripple Labs</a></p>
<p>A special thanks to Social Minds Inc, Orisi & Gavin Andresen </p>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Custom stuff -->
<script src="js/wow.js"></script>
<script>
new WOW().init();
</script>
<link href="css/animate.css" rel="stylesheet">
<script src="js/jquery.countdown.min.js"></script>
<script type="text/javascript">
$('#countdown').countdown('2014/08/05', function(event) {
$(this).html(event.strftime('%D days %H:%M:%S'));
});
</script>
</body>
</html>