-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (78 loc) · 3.51 KB
/
index.html
File metadata and controls
85 lines (78 loc) · 3.51 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
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
---
title: Home
layout: default
---
<style>
orange {
color: rgba(254, 200, 89, 1);
}
</style>
<!-- <div class=bgimage> -->
<!-- Home Intro
================================================== -->
{% if page.url == "/" %}
<div class="rounded mb-3 hero-head-computer">
<img height="100" src="{{site.baseurl}}/assets/images/hero_storefront.png">
</div>
<div class="rounded mb-3 hero-head-cell">
<img height="100" src="{{site.baseurl}}/assets/images/hero_storefront_cell.png">
</div>
<div class="rounded mb-5 hero-sub">
<div class="row align-items-end justify-content-between">
<div class="col-md-7">
<h3 class="font-weight-bold mb-1 serif-font text-lg-left text-left">This month on OSOH</h3>
<h1 class="font-weight-bold mb-1 serif-font text-lg-left text-left">Introduction to 3D Printing: A hands-on workshop </h1>
<p class="lead text-lg-left text-left"><br> In this interactive workshop, participants will learn the basics of 3D printing, including different types of printers, materials, software, and the main steps of the printing workflow. The session will be led by Dr. Joshua M. Pearce, the John M. Thompson Chair in Information Technology and Innovation at Western University, a Fellow of the Canadian Academy of Engineering, and a leading expert in open hardware, additive manufacturing, and sustainable technology. This is a great opportunity to explore how 3D printing can support research, especially as many community members already have access to printers through McGill libraries, maker spaces, and individual labs. No prior experience is required.
<br>
<p class="text-lg-left text-left"><b>Workshop:</b> <orange>May 1, 11:30-3 pm EST, De Grandpré Communications Centre, The Neuro.</orange> <br>
<b>Expert: </b> <orange>Joshua Pearce. Professor, Department of Electrical & Computer Engineering and Ivey Business School, Western University. Editor in Chief, Hardware X</orange> </p>
<div class="d-flex justify-content-center">
<a href="{{site.baseurl}}/may-3DWorkshop" class="btn btn-dark text-light px-5 btn-lg"
style="background-color:rgb(255, 255, 255, .2)">More info!</a>
</div>
</div>
<div class="col-md-5 text-right pl-0 pl-lg-6 mt-4 mb-3">
<img class="intro" height="600" src="{{site.baseurl}}/assets/images/icons_big/helpers.svg">
</div>
</div>
</div>
<!-- </div> -->
{% endif %}
<!-- Featured Posts
================================================== -->
<section class="row">
{% for post in site.posts %}
{% if post.featured == true %}
<div class="col-md-4 mb-5">
{% include featpostbox.html %}
</div>
{% endif %}
{% endfor %}
</div>
</section>
<!-- Section Break
================================================== -->
<hr>
<h1 class="posttitle">News and Events</h1>
<!-- <img height="100" src="{{site.baseurl}}/assets/images/non_glowy_words/news_and_events.svg"> -->
<!-- All Posts List with Sidebar (except featured)
================================================== -->
<section class="row">
<div class="col-sm-12">
<div class="row">
{% for post in paginator.posts %}
{% unless post.featured == true or post.badge == true %}
<div class="col-md-3 mb-5">
{% include postbox.html %}
</div>
{% endunless %}
{% endfor %}
</div>
<!-- Pagination -->
<div class="bottompagination">
<span class="navigation" role="navigation">
{% include pagination.html %}
</span>
</div>
</div>
</section>