Skip to content

Commit 524ed64

Browse files
author
Jun Zheng
authored
Merge pull request #2 from hackthevalley/develop
Develop
2 parents aa3f52b + bc81e46 commit 524ed64

File tree

187 files changed

+2250
-26266
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+2250
-26266
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = false
9+
insert_final_newline = false

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
14
.DS_Store
2-
.idea
5+
.idea

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Gemfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.7.3"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
# gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
end
24+
25+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
30+

Gemfile.lock

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.0.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
eventmachine (1.2.7-x64-mingw32)
13+
ffi (1.9.25)
14+
ffi (1.9.25-x64-mingw32)
15+
forwardable-extended (2.6.0)
16+
http_parser.rb (0.6.0)
17+
i18n (0.9.5)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (3.7.4)
20+
addressable (~> 2.4)
21+
colorator (~> 1.0)
22+
em-websocket (~> 0.5)
23+
i18n (~> 0.7)
24+
jekyll-sass-converter (~> 1.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 1.14)
27+
liquid (~> 4.0)
28+
mercenary (~> 0.3.3)
29+
pathutil (~> 0.9)
30+
rouge (>= 1.7, < 4)
31+
safe_yaml (~> 1.0)
32+
jekyll-feed (0.11.0)
33+
jekyll (~> 3.3)
34+
jekyll-sass-converter (1.5.2)
35+
sass (~> 3.4)
36+
jekyll-seo-tag (2.5.0)
37+
jekyll (~> 3.3)
38+
jekyll-watch (2.0.0)
39+
listen (~> 3.0)
40+
kramdown (1.17.0)
41+
liquid (4.0.0)
42+
listen (3.1.5)
43+
rb-fsevent (~> 0.9, >= 0.9.4)
44+
rb-inotify (~> 0.9, >= 0.9.7)
45+
ruby_dep (~> 1.2)
46+
mercenary (0.3.6)
47+
minima (2.5.0)
48+
jekyll (~> 3.5)
49+
jekyll-feed (~> 0.9)
50+
jekyll-seo-tag (~> 2.1)
51+
pathutil (0.16.1)
52+
forwardable-extended (~> 2.6)
53+
public_suffix (3.0.3)
54+
rb-fsevent (0.10.3)
55+
rb-inotify (0.9.10)
56+
ffi (>= 0.5.0, < 2)
57+
rouge (3.2.1)
58+
ruby_dep (1.5.0)
59+
safe_yaml (1.0.4)
60+
sass (3.6.0)
61+
sass-listen (~> 4.0.0)
62+
sass-listen (4.0.0)
63+
rb-fsevent (~> 0.9, >= 0.9.4)
64+
rb-inotify (~> 0.9, >= 0.9.7)
65+
thread_safe (0.3.6)
66+
tzinfo (1.2.5)
67+
thread_safe (~> 0.1)
68+
tzinfo-data (1.2018.5)
69+
tzinfo (>= 1.0.0)
70+
wdm (0.1.1)
71+
72+
PLATFORMS
73+
ruby
74+
x64-mingw32
75+
76+
DEPENDENCIES
77+
jekyll (~> 3.7.3)
78+
jekyll-feed (~> 0.6)
79+
minima (~> 2.0)
80+
tzinfo-data
81+
wdm (~> 0.1.0)
82+
83+
BUNDLED WITH
84+
1.16.5

README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

_config.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Hack the Valley 3
17+
email: hello@hackthevalley.io
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
UofT Scarborough is hosting a 36h Hackathon from January 11th to 13th, 2019.
20+
Get your hands on some of the top hardware and API's out there and put your
21+
creativity to the test!
22+
baseurl: "" # the subpath of your site, e.g. /blog
23+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
24+
copyright: Copyright Hack the Valley 2018
25+
facebook_username: hackthevalley
26+
github_username: hackthevalley
27+
28+
# Build settings
29+
markdown: kramdown
30+
version: 3
31+
32+
# Exclude from processing.
33+
# The following items will not be processed, by default. Create a custom list
34+
# to override the default setting.
35+
# exclude:
36+
# - Gemfile
37+
# - Gemfile.lock
38+
# - node_modules
39+
# - vendor/bundle/
40+
# - vendor/cache/
41+
# - vendor/gems/
42+
# - vendor/ruby/

_includes/footer.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<footer class="site-footer h-card">
2+
<data class="u-url" href="{{ "/" | relative_url }}"></data>
3+
4+
<div class="wrapper">
5+
6+
<h2 class="footer-heading">{{ site.title | escape }}</h2>
7+
8+
<div class="footer-col-wrapper">
9+
10+
<div class="footer-col footer-col-12">
11+
{%- include social.html -%}
12+
</div>
13+
</div>
14+
</div>
15+
</footer>

_includes/google-analytics.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<script>
2+
if(!(window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1")) {
3+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
4+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
5+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
6+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
7+
ga('create', '{{ site.google_analytics }}', 'auto');
8+
ga('send', 'pageview');
9+
}
10+
</script>

_includes/head.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<head>
2+
<title>{{ site.title }}</title>
3+
<meta charset="utf-8">
4+
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700,900" rel="stylesheet">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="icon" href="favicon.ico">
8+
<meta property="og:title" content="{{ site.title }}">
9+
<meta property="og:type" content="website">
10+
<meta property="og:image" content="https://www.evernote.com/l/Aq0fIM72o5hGDKEKWvv01f9JLfnAVKr87rkB/image.png">
11+
<meta name="twitter:card" content="summary_large_image">
12+
<meta name="twitter:image" content="https://www.evernote.com/l/Aq0fIM72o5hGDKEKWvv01f9JLfnAVKr87rkB/image.png">
13+
<meta property="og:site_name" content="{{ site.title }}">
14+
<meta property="og:description" content="{{ site.description }}">
15+
<meta name="copyright" content="{{ site.copyright }}">
16+
<meta name="description" content="{{ site.description }}">
17+
<meta name="keywords" content="hackathon, programming, computer science, student, university, toronto, hack the valley, hack valley, utsc, uoft">
18+
<link rel="stylesheet" href="{{ '/assets/main.css' | relative_url }}?v={{ site.version }}">
19+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
20+
{%- if jekyll.environment == 'production' and site.google_analytics -%}
21+
{%- include google-analytics.html -%}
22+
{%- endif -%}
23+
</head>

0 commit comments

Comments
 (0)