-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
193 lines (162 loc) · 6.36 KB
/
index.html
File metadata and controls
193 lines (162 loc) · 6.36 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="SourceLab">
<meta name="author" content="SourceLab">
<title>Source Lab - Collection of Projects and Open Source Libraries</title>
<!-- Bootstrap core CSS -->
<link href="/assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="/css/blog-post.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="/">
<img src="/img/bubble-100.png" alt="SourceLab.org" width="35"> Source Lab
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home
<span class="sr-only">(current)</span>
</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="#">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
-->
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Post Content Column -->
<div class="col-lg-8">
<!-- Title -->
<h1 class="mt-4">Source Lab</h1>
<!-- Author -->
<p class="lead">
by
<a href="http://github.com/crim">Stephen</a>
</p>
<hr>
<!-- Date/Time -->
<p>Posted on November 14, 2017</p>
<hr>
<!-- Preview Image -->
<!--
<img class="img-fluid rounded" src="http://placehold.it/900x300" alt="">
<hr>
-->
<!-- Post Content -->
<p class="lead">
A collection of open source projects.
</p>
<p>
<img src="/img/chemistry-200.png" alt="Chemistry">
</p>
<hr>
</div>
<!-- Sidebar Widgets Column -->
<div class="col-md-4">
<!-- Search Widget -->
<!--
<div class="card my-4">
<h5 class="card-header">Search</h5>
<div class="card-body">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for...">
<span class="input-group-btn">
<button class="btn btn-secondary" type="button">Go!</button>
</span>
</div>
</div>
</div>
-->
<!-- Categories Widget -->
<div class="card my-4">
<h5 class="card-header">Intellij Plugins</h5>
<div class="card-body">
<div class="row">
<div class="col-lg-8">
<ul class="list-unstyled mb-0">
<li>
<a href="https://github.com/SourceLabOrg/BuildMonitor_IntellijPlugin/">Build Monitor Plugin</a>
</li>
<li>
<a href="https://github.com/SourceLabOrg/KafkaConnectClient_IntellijPlugin">Kafka Connect Plugin</a>
</li>
<li>
<a href="https://github.com/SourceLabOrg/PhpDataObjectGeneratorPlugin">PHP Data Object Generator Plugin</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="card my-4">
<h5 class="card-header">Open Source</h5>
<div class="card-body">
<div class="row">
<div class="col-lg-8">
<ul class="list-unstyled mb-0">
<li>
<a href="https://github.com/SourceLabOrg/kafka-webview">Kafka WebView</a>
</li>
<li>
<a href="https://github.com/SourceLabOrg/kafka-connect-client">Kafka Connect Rest Client</a>
</li>
<li>
<a href="https://github.com/SourceLabOrg/Buildkite-Api-Client">Buildkite API Client</a>
</li>
<li>
<a href="https://github.com/SourceLabOrg/RedisStreams-StormSpout">RedisStreams Spout for Apache Storm</a>
</li>
<li>
<a href="https://github.com/crim/pardot-java-client">Pardot Java API Client</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Side Widget -->
<!--
<div class="card my-4">
<h5 class="card-header">Header</h5>
<div class="card-body">
Content
</div>
</div>
-->
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">Copyright © SourceLab.org 2023</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="/assets/jquery/jquery.min.js"></script>
<script src="/assets/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>