forked from BUILDS-/builds-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.17 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
---
layout: default
title: BUILDS - Home
carousel: true
---
<div id="home">
<div class="row-fluid">
<h1> About BUILDS </h1>
<p>
BUILDS is a student-run research lab and workshop that provides BU students with tools and resources for conducting collaborative student-led tech projects. Access is open to members 24 hours a day, 7 days a week. Contact us to set up a visit or swing by MCS B26 to check out this unique student-supported hackerspace.
</p>
<a class="btn btn-danger" href="{{site.base}}/about">Read more about us!</a>
</div>
<hr />
<div class="row-fluid">
<div class="span6 ">
<h1>Recent Stories</h1>
<ul class="posts">
{% for post in site.posts | first: 3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{site.base}}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
<div class="span6">
<h1>Featured Projects</h1>
<ul class="posts">
{% for post in site.categories.projects | first: 3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{site.base}}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>