forked from MarlinFirmware/MarlinDocumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (56 loc) · 2.6 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
---
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/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><strong>Open Source 3D Printer Firmware</strong></h1>
<p class="text-justify">First created in 2011 for RepRap and Ultimaker, today Marlin drives most of the world's 3D printers. Reliable and precise, it delivers outstanding print quality while keeping you in full control of the process. As an open source project hosted on <a href="https://github.com/">Github</a>, Marlin is owned and maintained by the maker community.</p>
<p><a href="/docs/development/contributing.html">Learn how you can contribute!</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>