forked from MarlinFirmware/MarlinDocumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (82 loc) · 3.61 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
---
permalink: /
title: 'Home'
description: 'Marlin, the most widely-used 3D printer firmware in the world'
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="Banner" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/carousel-code.jpg' | prepend: site.baseurl }}" alt="Banner" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/banner-01.jpg' | prepend: site.baseurl }}" alt="Banner" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/example-450.jpg' | prepend: site.baseurl }}" alt="Banner" />
</div>
<div class="item">
<img src="{{ '/assets/images/carousel/controller.jpg' | prepend: site.baseurl }}" alt="Banner" />
</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>, 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.baseurll }}">
<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",
"For Fused Filament Fabrication",
"Build It Your Way",
"For Fused Deposition Modeling",
"Open Source RepRap Driver",
"Heating, moving, making, grooving",
"Deterministic deposition engine"
],
tagline = taglines[Math.floor(Math.random()*taglines.length)];
document.getElementById('tagline').innerText = tagline;
// ]]>
</script>