-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
121 lines (107 loc) · 5.43 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 http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<link rel="icon" href="img/icon.ico">
<title>Home - CE Programming</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<div class="navbar-fixed">
<nav class="cemu-color" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="/" class="brand-logo"><img class="hide-on-med-and-down" src="img/icon.png" alt="CEmu"> CE Programming</a>
<ul class="right hide-on-med-and-down">
<li class="waves-effect waves-light"><a href="https://github.com/CE-Programming"><i class="material-icons left">code</i>GitHub</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li class="waves-effect waves-light"><a href="https://github.com/CE-Programming"><i class="material-icons left">code</i>GitHub</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
</div>
<br><br>
</div>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center cemu-color-text"><i class="material-icons">library_books</i></h2><!-- book? explore? school? -->
<h5 class="center">Libraries</h5>
<p>
The <b>libraries</b> provide methods for performing quick and painless graphics support, file IO operations, keypad scanning assistance, etc. on the TI-84 Plus CE / TI-83 Premium CE calculators.
A C/C++ API comes integrated with the toolchain for ease of use.
</p>
<div class="row center">
<a href="https://github.com/CE-Programming/libraries/releases/latest" id="download-button" class="btn-large waves-effect waves-light cemu-color-lighter"><i class="material-icons left">file_download</i>Download</a>
</div>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center cemu-color-text"><i class="material-icons">laptop_chromebook</i></h2>
<h5 class="center">CE C/C+ Toolchain</h5>
<p>
The <b>CE C/C++ Toolchain</b> is a series of programs and tools used to build and create new programs, using the C and C++ languages, for the TI-84 Plus CE / TI-83 Premium CE calculators.
It comes with a heavy emphasis on <a href="https://ce-programming.github.io/toolchain/" target="_blank">documentation</a> with guides & examples to help in all steps of program development.
</p>
<div class="row center">
<a href="https://github.com/CE-Programming/toolchain/releases/latest" id="download-button" class="btn-large waves-effect waves-light cemu-color-lighter"><i class="material-icons left">file_download</i>Download</a>
</div>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center cemu-color-text"><i class="material-icons">developer_board</i></h2>
<h5 class="center">CEmu</h5>
<p>
<b>CEmu</b> is a third-party TI-84 Plus CE / TI-83 Premium CE calculator emulator, focused on developer features.
CEmu works natively on Windows, macOS, and Linux.
</p>
<div class="row center">
<a href="https://ce-programming.github.io/CEmu/" id="download-button" class="btn-large waves-effect waves-light cemu-color-lighter"><i class="material-icons left">home</i>Homepage</a>
</div>
</div>
</div>
</div>
</div>
<br><br>
</div>
<footer class="page-footer cemu-color">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">About</h5>
<p class="grey-text text-lighten-4">
CE Programming is an organization created and contributed to by a variety of skilled people from across the calculator community.
</p>
</div>
<div class="col l6 s12">
<h5 class="white-text">Support</h5>
<ul>
<li><a class="white-text" href="https://kiwiirc.com/nextclient/irc.underworld.no/#ez80-dev">Chat with developers on IRC (EFNet @ #ez80-dev)</a></li>
<li><a class="white-text" href="https://discord.gg/TRkN5UcUzs">Chat with developers on Discord</a> (bridged to the IRC channel above)</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2015-<script>document.write(new Date().getFullYear())</script> CE Programming. Made with <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>.
<span class="right right-align">
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>