Skip to content

Fall 2019 #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Nov 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
run_server.sh
.sass-cache/*
_site/*
_site/
.idea/
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
hacks.io
nuhacks.io
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM jekyll/jekyll

COPY Gemfile .
COPY Gemfile.lock .

RUN bundle install --quiet --clean

CMD ["jekyll", "serve"]
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ DEPENDENCIES
tzinfo-data

RUBY VERSION
ruby 2.4.1p111
ruby 2.6.4p104

BUNDLED WITH
1.17.1
1.17.3
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ NU Hacks

The website for NUHacks, a Northeastern University student organization for hackers and makers.

Hosted at: http://hacks.io
## Local Server

```bash
# 1. build image
docker build -t nuhacks $PWD
# 2. start container for the first time (use `-it` instead of `-p` for process to ocupy terminal)
docker run --rm -it -p 4000:4000 --name nuhacks -v $PWD:/srv/jekyll nuhacks
```

## Adding new announcments
Create a new `.md` file that's descriptive of your announcement in `_announcements/`.
Expand Down
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# in the templates via {{ site.myvariable }}.

title: NU Hacks
email: nuhacksboard@gmail.com
email: eboard@nuhacks.io
description: The website for NUHacks, a Northeastern University student organization for hackers and makers.
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://hacks.io"
url: "https://nuhacks.io"
twitter_username: NUHacks
github_username: hacks
github_repo: hacks/hacks.github.io
Expand Down
6 changes: 4 additions & 2 deletions _data/mentors.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
- name: Jacob Aronoff
blurb: I like hacking at hacks
- name: Trey Del Bonis
blurb: I like Linux, Bitcoin, Rust, and Minecraft.
- name: Jennings Zhang
blurb: I like cyber-security, linux, and bio. Free rants!
- name: Nat Hsu
blurb: I like illustrating stuff, and I am a boba fanatic.
4 changes: 2 additions & 2 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<img src="/assets/img/hacktopus-web.png" id="hacktopus" alt="Hacktopus Logo">
<h1>If you like making, breaking, hacking, designing, building, and other creative-type things, you should hang with us.</h1>
<p>Thursdays 20:30&mdash;00:00 at
<a href="https://goo.gl/maps/UTf6rc2RLaT2" target="_blank">Ell Hall 411</a>
<a href="https://www.khoury.northeastern.edu/directions-and-parking/" target="_blank">West Village H, room 366</a>
</p>
<p>Read our <a href="/conduct">Code of Conduct</a></p>

Expand All @@ -34,7 +34,7 @@ <h2>Need help? Ask our mentors!</h2>
This whole capture ordeal is because we are including a markdown file inside html.
{% endcomment %}
{{ mentors | markdownify }}
<h3>Want a full list? Click <a href="http://mentors.hacks.io/">here</a>!</h3>
<h3>Want a full list? Click <a href="http://mentors.nuhacks.io/">here</a>!</h3>
</aside>
</div>

Expand Down