forked from kellyegan/rimakermill.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·45 lines (37 loc) · 1.5 KB
/
index.html
File metadata and controls
executable file
·45 lines (37 loc) · 1.5 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
---
layout: default
title: Hyperspace by HTML5 UP
---
<!-- Intro -->
<section id="sidebar">
<div class="inner">
{% include sidebar.html %}
</div>
</section>
<!-- Wrapper -->
<div id="wrapper">
<section id="welcome" class="wrapper style1 fullscreen fade-up">
<div class="inner">
<h1>{{ site.title }}</h1>
<p>Rhode Island Maker Mill is a makerspace supporting the arts, engineering, and science in the Rhode Island and southern Massachusetts area. Our members are interested in all kinds of making including 3D printing, digital fabrication, electronics, fiber arts and more. We hold events, workshops and meet ups to learn, make and share. </p>
<p>We are open an in the shop Wednesday and Friday nights from 7pm until at least 10pm each week.</p>
</p>
<p>Follow us on <a href="https://www.instagram.com/ri_mm">Instagram</a>, <a href="https://twitter.com/rimakermill">Twitter</a> and <a href="https://www.facebook.com/RhodeIslandMakerMill/about/">Facebook</a> for updates.</p>
<ul class="actions">
<li><a href="#section-1" class="button scrolly">Learn more</a></li>
</ul>
</div>
</section>
{% assign section_index = 1 %}
{% assign sections = site.pages | where: "front", "true" | sort: "index" %}
{% for section in sections %}
<section id="section-{{ section_index }}" class="wrapper style2 fullscreen fade-up">
<div class="inner">
<h2>{{ section.title }}</h2>
{{ section.content }}
</div>
</section>
{% assign section_index = section_index | plus: 1 %}
{% endfor %}
{% include footer.html %}
</div>