forked from shapeoko/Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaxis.html
79 lines (70 loc) · 3.1 KB
/
yaxis.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
<!doctype html>
<html>
<head>
<title>Shapeoko2 - Y-Axis</title>
<link href="shapeoko.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,700' rel='stylesheet' type='text/css'>
<script src="js/markdown.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11630357-11']);
_gaq.push(['_setDomainName', 'shapeoko.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div class="header">
<div class="left">
<a href="http://docs.shapeoko.com"><span class="toplink">Shapeoko 2</span></a>
</div>
<div class="right">
<ul>
</ul>
</div>
</div>
<div id="wrapper">
<nav>
<dl>
<dt><a href='index.html'>Welcome!</a></dt>
<dt><a href='tips.html'>Pro Tips!</a></dt>
<dt><a href='software.html'>Software</a></dt>
<dt><a href='electronics.html'>Electronics</a></dt>
<dt><a href='wheels.html'>Wheels + Idlers</a></dt>
<dt><a href='carriages.html'>Carriages</a></dt>
<dt><a href='zaxis.html'>Z-Axis</a></dt>
<dt><a href='gantry.html'>Gantry</a></dt>
<dt><a href='yaxis.html'>Y-Axis</a></dt>
<dt><a href='workarea.html'>Work Area</a></dt>
<dt><a href='wiring.html'>Electrical Wiring</a></dt>
<dt><a href='helloworld.html'>Hello, World</a></dt>
<dt><a href='firstjob.html'>First Job</a></dt>
</dl>
</nav>
<div id="contentWrapper">
<article id="content">
<!--This is where the content gets rendered-->
</article>
</div><!--end contentWrapper-->
</div><!--end wrapper-->
<!--This is the script that loads the appropriate .md file-->
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
url:"content/yaxis.md",
dataType: "text",
success: function(response){
$("#content").append(markdown.toHTML(response));
}
});
//rename the page
document.title = 'Shapeoko 2 - Y-Axis Assembly';
});
</script>
</body>
</html>