-
Notifications
You must be signed in to change notification settings - Fork 7
/
logo.html
59 lines (47 loc) · 1.64 KB
/
logo.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--# include file="/templates/header.html" -->
<title>Egison - Logos</title>
</head>
<body data-spy="scroll" data-target=".bs-sidebar" data-offset="0">
<!--# include file="/templates/navbar.html" -->
<div class="container manual">
<div class="row">
<div class="col-md-12" id="top" role="complementary">
<h1>Egison Logos</h1>
</div>
</div>
<div class="row">
<div class="col-md-12" role="main">
<p>
The following Egison Logos are available under <a target="_blank" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution ShareAlike (CC BY-SA)</a>.
</p>
<img src="/images/EgisonLogo.png">
<br/>
<img src="/images/EgisonLogo2.png">
<br/>
<img src="/images/EgisonIcon.png">
</div>
</div><!--/row-->
<hr class="divider">
<div class="row">
<!--# include file="/templates/disqus-main.html" -->
</div><!--/row-->
</div><!-- /.container -->
<!--# include file="/templates/footer.html" -->
<script>
$(document).ready(function(){
$('.btn').button()
$('#subscribe').click(function() {
$('#subscribe').prop("disabled", true);
$('#subscribe').html("Processing...");
$.post("/api/subscribe", { email: document.getElementById("email").value }, function(data) {
$('#subscribe').html("Accepted!");
$('#subscribe').prop("disabled", true);
}, "json");
});
});
</script>
</body>
</html>