-
Notifications
You must be signed in to change notification settings - Fork 0
/
makerspace.html
124 lines (107 loc) · 4.21 KB
/
makerspace.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
---
layout: default
title: maker.space
section_id: makerspace
---
<div class='full parallax' style='background-image: url(images/@header/makerspace.png); color: #fff; '>
<div class='row'>
<div class='large-12 columns'>
{% include section-header.html title="maker.space" tagline="how we bring ideas to life" color="#fff" class="big" %}
</div>
</div>
<div class='four spacing'></div>
</div>
<div class='full'>
<div class='row'>
<div class='medium-8 columns'>
<h2>For Students and Staff of our University</h2>
<p>Our makerspace provides access to various machines and tools for modern digital fabrication. We welcome students and researchers of all faculties and support them to bring their projects and ideas to life. <br>
You find the maker.space next to inno.space in room K020 (EG). <br><br>
We open the doors weekly on Tuesday from 1:30 pm and Friday from 10:00 am. During this time people can book the machines for predefined time slots and the inno.space teaching team supports and supervises the usage. <br> Booking is organized via the following moodle course: <a href="https://moodle.hs-mannheim.de/course/view.php?id=5259" target="_blank" rel="noopener noreferrer">makerspace</a> <br>
The usage of dedicated machinery requires special training. Therefor we offer mastering machinery courses in a blended format. Further information is also available in the respective moodle course.
</p>
<div class='two spacing'></div>
</div>
<div class='medium-4 columns'>
<div class='contact-details'>
<h4>Opening hours:</h4>
<p>Tuesday: 1:30 pm - 5:30 pm<p>
<p>Friday: 10:00 am - 2:00 pm<p>
</p>
</div>
</div>
</div>
</div>
<div class='two spacing'></div>
</div>
<div class='full' style="background: #f5f5f5;">
<div class="row">
<div class='medium-12 columns'>
<h2>Our machine Highlights</h2>
</div>
</div>
<br>
<div class='row'>
{% for machine in site.data.machines %}
<div class='small-6 end medium-3 large-3 columns'>
<div class='mod modTeamMember'>
<div class='member'>
<img class="avatar" alt="" src="{{ machine.avatar }}" />
<div class='overlay'>
<div class='intro'>
<h3>{{machine.name}}</h3>
<p>{{machine.position}}</p>
</ul>
</div>
</div>
</div>
</div>
<div class='four spacing'></div>
</div>
{% endfor %}
</div>
</div>
<div class='full'>
<div class='row'>
<div class='medium-12 columns'>
<h2>The Room</h2>
</div>
</div>
<div class='row'>
<!-- <div class='medium-6 columns'>
<h3>Wood and metal sector</h3>
<ul style="padding-left: 30px">
<li>Pedestal drilling machine</li>
<li>Pedestal drilling machine</li>
<li>Pedestal drilling machine</li>
</ul>
<h3>Digital sector</h3>
<ul style="padding-left: 30px">
<li>Resin Printer</li>
<li>3D-Printer Ultimaker 2 extended+</li>
<li>3D-Printer Ultimaker 5 </li>
</ul>
<h3>Textile sector</h3>
<ul style="padding-left: 30px">
<li>Vinyl Cutter</li>
<li>Sewing machine</li>
<li>Sewing machine</li>
</ul>
<h3>Electronic sector</h3>
<ul style="padding-left: 30px">
<li>Osziloscope</li>
<li>Soldering iron</li>
<li>Soldering iron</li>
</ul>
<h3>Other facilities</h3>
<ul style="padding-left: 30px">
<li>Lego bricks</li>
<li>Prototyping material</li>
<li>Prototyping material</li>
</ul>
<div class='two spacing'></div>
</div> -->
<div class='medium-12 columns'>
{% include image-gallery.html folder="/images/@makerRoom" %}
</div>
</div>-