Skip to content

Commit 57a56f2

Browse files
committed
Added meeting minutes, used pre formatting... Not the nicest, but it will work for now (convince George to use Markdown). Removed images from posts which don't have them on the News page.
1 parent 292321a commit 57a56f2

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

_layouts/post.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
<h2>{{ page.title }}</h2>
55
<p class="meta">Posted at {{ page.date | date_to_string }} by {{ page.author }}</p>
66

7+
{% if page.image_url %}
78
<center>
89
<img src="{{site.base}}{{page.image_url}}" class="thumbnail" style="width:auto;height:300px"/>
910
</center> <br />
10-
11+
{%endif %}
1112
<div class="post">
1213
{{ content }}
1314
</div>

_posts/meeting-minutes/2013-09-04-meeting-minutes.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,47 @@ tag:
1010
Notes recorded from BUILDS meeting
1111
Recorded 9/04/13
1212

13+
<!-- more -->
14+
15+
<pre>
1316
First up: Introduction of this year's officers
1417
President: Chris Woodall, '14, Electrical Engineering
1518
VP: Allan Wirth, '15, Computer Science
1619
Treasurer: Andrew Mohn, '14, Mathematics
1720
Secretary: George Silvis III, '14, Mathematics and Ancient Greek
1821

19-
Splash:
22+
Splash:
2023
- We don't have a table, because of paperwork issues
2124
- We're not sure why it was moved, but it's annoying
2225
- We CAN be there, and we will
2326
- We will have flyers ready for people
2427
- We'll be telling people about the BUILDS room
2528
- We'll have things going on in BUILDS
2629

27-
CSAW Qualification Round:
30+
CSAW Qualification Round:
2831
- Run by NYU Poly, as part of Cyber-Security Awareness Week
2932
- Happens Sept 19-Sept 22
3033
- This is a great CTF for people who don't know too much about CTFs but are curious
3134
- On Friday, Sept 13th, Danny will be doing a very introductory Linux/Python/etc tutorial
3235
- On Saturday Sept 14th, Allan's running a primer of sorts, for people who want to know about security
3336

34-
We have a new website!
37+
38+
We have a new website!
3539
- It's a lot nicer than the old one
3640
- You can find upcoming events there, on the calendar
3741
- We want more content for the website
3842
- Cool things you've done for projects are welcome
3943
- Events should definitely be there
4044

41-
We have a new MAILING LIST
45+
We have a new MAILING LIST
4246
- New people should subscribe to the NEW list
4347
- We're using GNU mailman
4448
- This makes subscription easier
4549
- This makes unsubscription easier too!
4650
- This also allows people to view archives online
4751
- For now, we'll occasionally send emails to the old list, but it is now deprecated
4852

49-
Boston Key Party CTF Report
53+
Boston Key Party CTF Report
5054
- This is the first time we've hosted on a CTF
5155
- Collaboration with a few students at Northeastern
5256
- They'll be here for CSAW too
@@ -55,13 +59,13 @@ Boston Key Party CTF Report
5559
- We plan to host this again this year, but we're not sure when yet
5660
- Talk to Allan or George if you want to help out
5761

58-
Meeting structure
62+
Meeting structure
5963
- Still 6:30 on Wednesdays
6064
- They will generally NOT happen every week
6165
- Weeks without meetings will have hack/work nights, without formal announcements
6266
- Email reminders will be sent out for when meetings happen
6367

64-
Other things:
68+
Other things:
6569
- HAMR (Hacking Audio and Music Research)
6670
- About 30 people attended, including Kenshin
6771
- It's happening again Sept 27-29th, in a quanit rural inn in New Hampshire
@@ -81,3 +85,4 @@ Other things:
8185
- Hack MIT
8286
- October 4-6
8387
- It's VERY full, but if anyone has a spot, tell us how it goes
88+
</pre>

_posts/meeting-minutes/2013-09-11-meeting-minutes.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ tag:
1010
Notes recorded from BUILDS meeting
1111
Recorded 9/11/13
1212

13+
<!-- more -->
14+
15+
<pre>
1316
Introduce officers again.
1417

1518
Upcoming events:
@@ -34,6 +37,7 @@ Upcoming events:
3437
- Artificial Intelligence, too
3538
- Thursday, 6 PM
3639

40+
3741
Projects that people are interested in working on
3842
- Allan: Offline genome viewer
3943
- Current genome sequencing serivices give you a large file with little anotation
@@ -52,3 +56,4 @@ Introduce students
5256

5357
Please come by whenever! The door is open as often as we can manage it, and
5458
people are often working and hacking here late into the night.
59+
</pre>

news/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ <h1><a href="{{site.base}}{{ post.url }}">{{ post.title }}</a></h1>
1313
Posted by {%if post.author %} {{post.author}} {%else%} BUILDS {%endif%} on <span class="date">{{ post.date | date: "%m/%d/%Y"}}</span>
1414
</p>
1515
<div class="content">
16+
{%if post.image_url %}
1617
<center>
1718
<img src="{{site.base}}{{post.image_url}}" class="thumbnail" style="width:auto;height:200px"/>
1819
</center> <br />
19-
20+
{%endif%}
2021
{% if post.content contains "<!-- more -->" %}
2122
{{ post.content | split:"<!-- more -->" | first }}
2223
{% else %}

0 commit comments

Comments
 (0)