-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
113 lines (86 loc) · 3.91 KB
/
links.html
File metadata and controls
113 lines (86 loc) · 3.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Practical Automation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="/js/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/theme.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://practical-automation.com/">Practical Automation</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="http://practical-automation.com/">Home</a></li>
<li class="active"><a href="http://practical-automation.com/archive.html">Archive</a></li>
<li class="active"><a href="http://practical-automation.com/about.html">About</a></li>
<li class="active"><a href="http://practical-automation.com/feed.xml">RSS</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container container-left">
<div class="row">
<div class="col-md-3 hidden-xs">
<div class="sidebar well">
<h1>Recent Posts</h1>
<ul>
<li><a href="http://practical-automation.com/2016/01/Maturing_Automation_Part1">Maturing Automation Part 1 - Scripting</a></li>
<li><a href="http://practical-automation.com/2016/01/A_New_year">A New Year, A New Style</a></li>
<li><a href="http://practical-automation.com/2015/05/VCSA_Module">VCSA Module</a></li>
<li><a href="http://practical-automation.com/2015/04/Transports">Transports</a></li>
<li><a href="http://practical-automation.com/2015/04/Introduction">Introduction</a></li>
</ul>
</div>
<div class="sidebar well">
<h1>Categories</h1>
<a href="/tag/editorial.html" class="set-5">editorial</a> <a href="/tag/transports.html" class="set-1">transports</a> <a href="/tag/vcenter.html" class="set-1">vcenter</a> <a href="/tag/vcsa.html" class="set-5">vcsa</a> <a href="/tag/vshield.html" class="set-1">vshield</a>
</div>
</div>
<div class="col-md-9">
<!-- This page provides the sidebar links for mobile, where the sidebar is hidden -->
<div class="well">
<h1>Links</h1>
<ul>
<li><a href="#">One</a></li>
<li><a href="#">Two</a></li>
<li><a href="#">Three</a></li>
<li><a href="#">Four</a></li>
</ul>
</div>
</div>
</div>
</div>
<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-72840907-1', 'auto');
ga('send', 'pageview');
</script>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12 footer navbar-inverse navbar-fixed-bottom">
<a href="https://twitter.com/IcanScriptThat/">twitter</a>
<a href="https://www.linkedin.com/pub/kevin-murphy/20/8b9/64b">linkedin</a>
<a href="https://github.com/maniacmurphy">github</a>
</div>
</div>
</div>
</body>
</html>