forked from MarlinFirmware/MarlinDocumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (88 loc) · 3.91 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
82
83
84
85
86
87
88
89
90
91
92
---
permalink: /
title: 'Home'
description: 'Marlin Firmware - A really good 3D printer driver.'
category: [ default ]
---
<div id="carousel-generic" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active">
<img src="{{ '/assets/images/carousel/marlin-outrun-slide.jpg' | prepend: site.baseurl }}" alt="Marlin - Outrun" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/what_is_marlin_slide.png' | prepend: site.baseurl }}" alt="What is Marlin?" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/carousel-code.jpg' | prepend: site.baseurl }}" alt="The codes" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/banner-01.jpg' | prepend: site.baseurl }}" alt="Marlin in action" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/example-450.jpg' | prepend: site.baseurl }}" alt="Printing with Marlin" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/controller.jpg' | prepend: site.baseurl }}" alt="LCD Menu Controls" />
</div>
</div>
</div>
<div class="custom-tagline">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7">
<h1>Marlin Firmware</h1>
<h2 id="tagline">Open Source 3D Printer Driver</h2>
<p class="text-justify">First created in 2011 for RepRap and Ultimaker by <a href="https://github.com/ErikZalm">Erik van der Zalm</a> et. al., today Marlin drives most of the world's 3D printers. Reliable and precise, Marlin delivers outstanding print quality while keeping you in full control of the process.</p>
<p>As an <a href="https://opensource.org/">Open Source</a> project hosted on <a href="https://github.com/">Github</a>, Marlin is owned and maintained by the maker community. <a href="/docs/development/contributing.html">Learn how you can contribute!</a></p>
</div>
<div class="col-sm-12 col-md-5 custom-tagline-btn">
<p><a class="btn btn-success btn-block btn-lg" href="{{ '/docs/basics/introduction.html' | prepend: site.baseurl }}" role="button">
<em class="fa fa-book fa-1x" aria-hidden="true"></em> Learn more</a></p>
<p><a class="btn btn-info btn-block btn-lg" href="{{ '/meta/download/' | prepend: site.baseurl }}" role="button">
<em class="fa fa-download fa-1x" aria-hidden="true"></em> Download</a></p>
</div>
</div>
</div>
</div>
<div class="custom-tile">
<div class="container">
<div class="row">
{% for feature in site.data.features %}
<div class="col-sm-4">
<div class="custom-tile-image-wrapper">
<a href="{{ feature.link | prepend: site.baseurl }}">
<div class="custom-tile-image-block" style="background: url({{ '/assets/images/features/' | append: feature.img | prepend: site.baseurl }}) no-repeat center top; background-size: cover;">
<div class="custom-tile-image-legend">
{{ feature.title }}
<em class="fa fa-arrow-circle-right fa-1x" aria-hidden="true"></em>
</div>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<script language="javascript"><!--
// <![CDATA[
var taglines = [
"The code that makes the things",
"Printing things since 2011",
"The firmware we all trust",
"Heating, moving, making, grooving",
"Responsive, Reliable, Accurate",
"Fabricating Fused Filament",
"Fused Deposition Engine",
"Build It Your Way",
"Open Source RepRap Driver",
"Heating, moving, making, grooving",
"Deterministic deposition engine",
"A really good 3D printer driver",
"Motors & heaters & sensors, oh my!",
"Stepper Motor Repurposer"
],
tagline = taglines[Math.floor(Math.random()*taglines.length)];
document.getElementById('tagline').innerText = tagline;
// ]]>
</script>