generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
builds.html
590 lines (590 loc) · 33.4 KB
/
builds.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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Description" content="The build page of a website with information about FDM 3d printing using cartesian style 3d printers. Details of a Prusa i3 printer, a bear printer and a caribou 320 printer including links to external guides.">
<title>3DPrintQ Builds</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous" />
<!--******************** bootstrap cdn ********************-->
<script src="https://kit.fontawesome.com/35a878bce2.js" crossorigin="anonymous"></script>
<!--******************** fontawesome import ********************-->
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<!--******************** favicons import ********************-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/images/favicons/site.webmanifest">
</head>
<body>
<!--******************** Sign up Modal ********************-->
<div class="modal fade" id="signupModal" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="signupModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered row justify-content-center">
<div class="modal-content col-sm-8 content trans-modal">
<div class="modal-header">
<h4 class="modal-title" id="signupModalLabel"><strong>Newsletter</strong></h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Signing up to our Newsletter keeps you up to date with all the latest news and grants you discounts with our partners!
<form action="builds.html">
<div class="form-row form-group text-center col-auto pt-4">
<input type="text" class="form-control" placeholder="Name" name="full_name" id="fullname" required/>
</div>
<div class="form-row form-group text-center col-auto pb-4">
<input
type="email"
class="form-control"
placeholder="Email"
name="email"
id="emailaddress"
required
/>
</div>
<div class="modal-footer justify-content-center">
<input type="submit" class="btn sign-up" value="Sign Me Up!">
</div>
</form>
</div>
</div>
</div>
</div>
<!--******************** End Sign up Modal ********************-->
<header>
<!--******************** fully custom navbar utilising bootstrap ********************-->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a href="index.html" class="navbar-brand">
<img src="assets/images/logowhite.svg" alt="3DPrintQ logo" />
</a>
<button
class="navbar-toggler ml-auto"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="index.html#about">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="builds.html">Builds<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown mr-auto">
<a class="nav-link btn dropdown-toggle hvr-underline-from-center" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
</a>
<div class="dropdown-menu" id="dropdown" aria-labelledby="navbarDropdown">
<div class="dropdown-divider"></div>
<a class="dropdown-item hvr-underline-from-center" href="podcasts-and-videos.html">Podcasts & Videos</a>
<a class="dropdown-item hvr-underline-from-center" href="articles.html">Articles</a>
<a class="dropdown-item hvr-underline-from-center" href="glossary.html">Glossary</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link sign-up hvr-grow" href="#signupModal" data-toggle="modal">Sign-up</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--******************** end navbar ********************-->
<main>
<!--******************** main ********************-->
<div class="container-fluid pb-5">
<div class="row text-center">
<div class="col-sm-12">
<h1 class="page-head">Builds</h1>
<!--******************** about page section ********************-->
<div class="row about">
<div class="col-sm-4 offset-md-4">
<p class="content">
Select from one of the below to be taken to the appropriate
build guide. Here’s what you need to know about each one:
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center text-center padding desktop-only">
<!--******************** build images ********************-->
<div class="col-sm-4 hvr-icon-float">
<!--******************** Caribou Build Img ********************-->
<img
src="assets/images/caribou320build.jpg"
class="img-fluid img-thumbnail rounded hvr-icon"
alt="Caribou 320 Build"
title="Caribou 320 Build"
/>
</div>
<div class="col-sm-4 hvr-icon-float">
<!--******************** Prusa Build Img ********************-->
<img
src="assets/images/prusabuild.jpg"
class="img-fluid img-thumbnail rounded hvr-icon"
alt="Prusa Build"
title="Prusa Build"
/>
</div>
<div class="col-sm-4 hvr-icon-float">
<!--******************** Bear Build Img ********************-->
<img
src="assets/images/bearbuild.jpg"
class="img-fluid img-thumbnail rounded hvr-icon"
alt="Bear Build"
title=" Bear Build"
/>
</div>
</div>
<!--******************** end build images ********************-->
<div class="row tab-content" id="table-tabContent">
<!--******************** dropdown buttons using dynamic tabbed interface ********************-->
<div class="col-sm-12">
<ul class="nav nav-tabs justify-content-around padding" id="table-tab" role="tablist">
<li class="nav-item">
<!--******************** caribou table dropdown button ********************-->
<button
class="btn btn-caribou hvr-icon-hang"
type="button"
data-toggle="tab"
data-target="#caribouCollapse"
aria-expanded="false"
aria-controls="caribouCollapse"
role="tab"
id="table-caribouCollapse-tab"
aria-selected="false"
>
Caribou<span class="fa fa-arrow-circle-o-down hvr-icon pl-2"></span>
</button>
</li>
<li class="nav-item">
<!--******************** prusa table dropdown button ********************-->
<button
class="btn btn-prusa hvr-icon-hang"
type="button"
data-toggle="tab"
data-target="#prusaCollapse"
aria-expanded="false"
aria-controls="prusaCollapse"
role="tab"
id="table-prusaCollapse-tab"
aria-selected="false"
>
Prusa<span class="fa fa-arrow-circle-o-down hvr-icon pl-2"></span>
</button>
</li>
<li class="nav-item">
<!--******************** bear table dropdown button ********************-->
<button
class="btn btn-danger active hvr-icon-hang"
type="button"
data-toggle="tab"
data-target="#bearCollapse"
aria-expanded="false"
aria-controls="bearCollapse"
role="tab"
id="table-bearCollapse-tab"
aria-selected="true"
>
Bear<span class="fa fa-arrow-circle-o-down hvr-icon pl-2"></span>
</button>
</li>
</ul>
</div>
<!--******************** end dropdown buttons ********************-->
<div class="col-sm-12 tab-pane fade show active mt-3" id="caribouCollapse" role="tabpanel">
<img
src="assets/images/caribou320build.jpg"
class="img-fluid img-thumbnail rounded mobile-only mb-3"
alt="Caribou 320 Build"
title="Caribou 320 Build"
/>
<table class="table table-hover table-bordered">
<!--******************** caribou dropdown table ********************-->
<thead>
<tr>
<th class="text-center green-bg" scope="row" colspan="2">Caribou</th>
</tr>
<tr>
<th scope="col">Component</th>
<th scope="col">Details</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Frame</th>
<td>3030 Aluminium Extrusions by MISUMI</td>
</tr>
<tr>
<th scope="row">Hardware</th>
<td>
<pre>
Hardened Steel 8mm Rods by MISUMI
LMU8 Bearings by MISUMI</pre>
</td>
</tr>
<tr>
<th scope="row">Extruder</th>
<td>Bondtech extruder option</td>
</tr>
<tr>
<th scope="row">Bed</th>
<td>MK52 Heated Bed with Steel Sheet</td>
</tr>
<tr>
<th scope="row">Power Supply</th>
<td>Meanwell 320W PSU Option</td>
</tr>
<tr>
<th scope="row">MMU2 Compatability</th>
<td>..</td>
</tr>
<tr>
<th scope="row">Board</th>
<td>
EINSY RAMBo motherboard with Silent Trinamic drivers with
256 microstepping
</td>
</tr>
<tr>
<th scope="row">Features</th>
<td>
<pre>
Automatic mesh bed levelling
Automatic skew axes compensation
Magnetic PEI powder coat spring steel sheet
IR filament sensor
Automatic loading of filament when filament is inserted
P.I.N.D.A. 2 probe with included thermistor - faster temperature calibration
Integrated LCD and SD card controller (8GB included)</pre>
</td>
</tr>
<tr>
<th scope="row">Nozzle</th>
<td>
0,4mm nozzle (easily changeable) for 1,75 mm filament Layer
height from 0,05 mm
</td>
</tr>
<tr>
<th scope="row">Build Volume</th>
<td>
Great build volume – 25 x 21 x 32 cm (width, depth, height)
</td>
</tr>
<tr>
<th class="text-center green-bg" scope="row" colspan="2"><a href="assets/guides/CaribouBuildGuide.pdf" target="_blank" rel="noreferrer">Download Build Guide<span class="fas fa-download ml-3"></span></a></th> <!--******************** Caribou Download ********************-->
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12 tab-pane fade mt-3" id="prusaCollapse" role="tabpanel">
<img
src="assets/images/prusabuild.jpg"
class="img-fluid img-thumbnail rounded mobile-only mb-3"
alt="Prusa Build"
title="Prusa Build"
/>
<table class="table table-hover table-bordered">
<!--******************** prusa dropdown table ********************-->
<thead>
<tr>
<th class="text-center orange-bg" scope="row" colspan="2">Prusa</th>
</tr>
<tr>
<th scope="col">Component</th>
<th scope="col">Details</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Frame</th>
<td>
3030 Aluminium Extrusions on Y with milled Dural frame on Z
</td>
</tr>
<tr>
<th scope="row">Hardware</th>
<td>
<pre>
Hardened Steel 8mm Rods by MISUMI
LMU8 Bearings by MISUMI</pre>
</td>
</tr>
<tr>
<th scope="row">Extruder</th>
<td>Bondtech drive gears with E3D V6</td>
</tr>
<tr>
<th scope="row">Bed</th>
<td>MK52 Heated Bed with Steel Sheet</td>
</tr>
<tr>
<th scope="row">Power Supply</th>
<td>Meanwell 24V 240W</td>
</tr>
<tr>
<th scope="row">MMU2 Compatability</th>
<td>..</td>
</tr>
<tr>
<th scope="row">Board</th>
<td>
EINSY RAMBo motherboard with Silent Trinamic drivers with
256 microstepping
</td>
</tr>
<tr>
<th scope="row">Features</th>
<td>
<pre>
Automatic mesh bed levelling
Automatic skew axes compensation
Magnetic PEI powder coat spring steel sheet
IR filament sensor
Automatic loading of filament when filament is inserted
P.I.N.D.A. 2 probe with included thermistor - faster temperature calibration
Power Panic
Integrated LCD and SD card controller</pre>
</td>
</tr>
<tr>
<th scope="row">Nozzle</th>
<td>
0,4mm nozzle (easily changeable) for 1,75 mm filament Layer
height from 0,05 mm
</td>
</tr>
<tr>
<th scope="row">Build Volume</th>
<td>
Great build volume – 25 x 21 x 22 cm (width, depth, height)
</td>
</tr>
<tr>
<th class="text-center orange-bg" scope="row" colspan="2"><a href="https://help.prusa3d.com/en/category/original-prusa-i3-mk3s-kit-assembly_280" target="_blank" rel="noreferrer">Download Build Guide<span class="fas fa-download ml-3"></span></a></th> <!--******************** Prusa Download ********************-->
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12 tab-pane fade mt-3" id="bearCollapse" role="tabpanel">
<img
src="assets/images/bearbuild.jpg"
class="img-fluid img-thumbnail rounded mobile-only mb-3"
alt="Bear Build"
title=" Bear Build"
/>
<table class="table table-hover table-bordered">
<!--******************** bear dropdown table ********************-->
<thead>
<tr>
<th class="text-center red-bg" scope="row" colspan="2">Bear</th>
</tr>
<tr>
<th scope="col">Component</th>
<th scope="col">Details</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Frame</th>
<td>V-slot 20-40 Aluminum Extrusions</td>
</tr>
<tr>
<th scope="row">Hardware</th>
<td>
<pre>
Hardened Steel 8mm Rods by MISUMI
LMU8 Bearings by MISUMI</pre>
</td>
</tr>
<tr>
<th scope="row">Extruder</th>
<td>
Bondtech drive gears with E3D V6/ Bondtech BMG optional.
</td>
</tr>
<tr>
<th scope="row">Bed</th>
<td>MK52 Heated Bed with Steel Sheet</td>
</tr>
<tr>
<th scope="row">Power Supply</th>
<td>Meanwell 24V 240W</td>
</tr>
<tr>
<th scope="row">MMU2 Compatability</th>
<td>..</td>
</tr>
<tr>
<th scope="row">Board</th>
<td>
EINSY RAMBo motherboard with Silent Trinamic drivers with
256 microstepping
</td>
</tr>
<tr>
<th scope="row">Features</th>
<td>
<pre>
Automatic mesh bed levelling
Automatic skew axes compensation
Magnetic PEI powder coat spring steel sheet
IR filament sensor
Automatic loading of filament when filament is inserted
P.I.N.D.A. 2 probe with included thermistor - faster temperature calibration
Power Panic
Integrated LCD and SD card controller</pre>
</td>
</tr>
<tr>
<th scope="row">Nozzle</th>
<td>
0,4mm nozzle (easily changeable) for 1,75 mm filament Layer
height from 0,05 mm
</td>
</tr>
<tr>
<th scope="row">Build Volume</th>
<td>
Great build volume – 25 x 21 x 22 cm (width, depth, height)
</td>
</tr>
<tr>
<th class="text-center red-bg" scope="row" colspan="2"><a href="https://guides.bear-lab.com/c/Frame" target="_blank" rel="noreferrer">Download Build Guide<span class="fas fa-download ml-3"></span></a></th> <!--******************** Bear Download ********************-->
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
<!--******************** end main ********************-->
<!--******************** footer with logo ********************-->
<footer class="container-fluid bg-dark">
<div class="row">
<div class="col-sm-8 d-flex justify-content-between">
<div class="row">
<div class="col-sm-12 p-2 d-flex justify-content-start align-items-center">
<a href="index.html" aria-label="logo link to home page"><img
src="assets/images/logowhite.svg"
alt="3dprintq logo"
class="mx-auto d-block"
/></a>
</div>
<!--******************** contact details ********************-->
<div class="col-sm-6 d-flex justify-content-center">
<address>
<span class="hvr-icon-pulse-grow hsize">
Address <span class="fas fa-map-pin hvr-icon"></span>
</span>
<a href="https://goo.gl/maps/xxrJihnrqXCQjTNB7" target="_blank" rel="noreferrer">
<p>Bravo Digital Designs,</p>
<p>Cork.</p>
<p>Ireland</p>
</a>
</address>
</div>
<div class="col-sm-6 d-flex justify-content-center">
<address>
<span class="hvr-icon-grow-rotate hsize">Email <span class="fas fa-paper-plane hvr-icon"></span></span>
<p><a href="mailto:bdigital@design.com" target="_blank" rel="noreferrer">BDigital@designs.com</a></p>
</address>
</div>
<!--******************** Social ********************-->
<div class="col-sm-12 d-flex align-items-end justify-content-center bdr-top">
<h6 class="text-muted">Socialise with us!</h6>
</div>
<div class="col p-2 d-flex justify-content-around align-items-center">
<!--******************** use <span> for font awesome icons as more semantically correct ********************-->
<a href="https://www.facebook.com/"
target="_blank" rel="noreferrer" aria-label="facebook page icon"><span class="fab fa-facebook-square"></span></a>
<a href="https://www.instagram.com/"
target="_blank" rel="noreferrer" aria-label="instagram page icon"><span class="fab fa-instagram-square"></span></a>
<a href="https://www.pinterest.com/"
target="_blank" rel="noreferrer" aria-label="pinterest page icon"><span class="fab fa-pinterest-square"></span></a>
<a href="https://www.twitter.com/"
target="_blank" rel="noreferrer" aria-label="twitter page icon"><span class="fab fa-twitter-square"></span></a>
<a href="https://www.youtube.com/"
target="_blank" rel="noreferrer" aria-label="youtube page icon"><span class="fab fa-youtube-square"></span></a>
</div>
<div class="col-sm-12 text-center text-muted">
<p>© BDigital Designs. Lead Developer: Jay Bradley</p>
</div>
</div>
</div>
<!--******************** contact form ********************-->
<div class="col-sm-4 form bdr-left">
<h2>Contact us!</h2>
<form action="builds.html">
<p>Got something to add?</p><p>We’d <em>love</em> to hear!</p>
<div class="form-row form-group text-center col-auto">
<input type="text" class="form-control" placeholder="Your Name" name="full_name" id="fname" aria-label="form" required />
</div>
<div class="form-row form-group text-center col-auto">
<input
type="email"
class="form-control"
placeholder="Your Email Address"
name="email_address"
id="email"
required
aria-describedby="emailHelp"
aria-label="email input form"
/>
<small id="emailHelp" class="form-text text-muted"
>We'll never share your email with anyone else.</small>
</div>
<div class="form-row form-group text-center col-auto">
<textarea
class="form-control"
rows="2"
placeholder="Your Message"
name="your_message"
id="message"
required
aria-label="text-box for message"
></textarea>
</div>
<div
class="form-row form-group col-auto d-flex justify-content-start align-items-center text-center">
<input
type="checkbox"
class="form-check-input"
id="newsletter-check"
name="newsletter"
checked
aria-label="checkbox for newsletter sign-up"
/>
<label class="form-check-label" for="newsletter-check"
>Add me to the mailing list!</label>
</div>
<div class="form-row form-group justify-content-center col-auto">
<input type="submit" class="btn btn-outline-primary" aria-label="submit form button">
</div>
</form>
</div>
</div>
</footer>
<!--******************** end footer ********************-->
<!--******************** bootstrap script ********************-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>