-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
82 lines (58 loc) · 3.67 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
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Smoothie web interface choice</title>
<!-- Bootstrap core CSS -->
<link href="static/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="static/css/jumbotron-narrow.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Welcome</h1>
<p class="lead">Welcome to your Smoothieboard's web interface. Here we list the different web interfaces designed by the Smoothie community. Please try them out and choose the one you prefer.</p>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>Classic</h4>
<p>The classic web interface that used to be included in Smoothie's flash by default. Very minimalistic, a good base to start designing a custom interface.</p>
<p> <a href="classic/index.html" class="btn btn-primary" role="button">Go</a> </p>
<h4>Imrahil's improved interface</h4>
<p>Designed by <a href="https://github.com/imrahil/smoothieware-webui">Imrahil</a>, an improved version of the classic interface, with more functionality, and much nicer looking. Translated in two languages, new translations welcome. </p>
<p> <a href="imrahil-ui/index.html" class="btn btn-primary" role="button">Go</a> </p>
<h4>CNC-UI</h4>
<p>A derivative of the classic interface to make it more convenient for CNC users. By <a href="https://github.com/Pangloss-Labs/smoothie-cnc-ui">makegeneve</a> </p>
<p> <a href="cnc-ui/index.html" class="btn btn-primary" role="button">Go</a> </p>
</div>
<div class="col-lg-6">
<h4>New web interface</h4>
<p>A better version of the classic web interface, for contribution by users, supports CNC mode also. </p>
<p> <a href="new-web-interface/index.html" class="btn btn-primary" role="button">Go</a> </p>
<h4>Fabrica</h4>
<p>An experimental simplified/feature-full interface, not usable yet, and shown here as a preview. </p>
<p> <a href="fabrica/index.html" class="btn btn-primary" role="button">Go</a> </p>
<h4>Documentation</h4>
<p>A static copy of the <a href="http://smoothieware.org"> smoothieware.org </a> documentation wiki, so you can access the documentation even without internet access. </p>
<p> <a href="documentation/index.html" class="btn btn-primary" role="button">Go</a> </p>
<h4> File explorer</h4>
<p>A simple interface to explore the contents of the SD card through your browser. </p>
<p> <a href="file-explorer/index.html" class="btn btn-primary" role="button">Go</a> </p>
</div>
</div>
<footer class="footer">
<p> The Smoothie project is an Open-Source firmware and controller board project for CNC/digital fabrication. More information can be found on the community <a href="http://smoothieware.org">Website</a> </p>
<p> The source code for this web interface pack can be found <a href="https://github.com/Smoothieware/Webif-pack"> on Github here </a> </p>
</footer>
</div> <!-- /container -->
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>