Skip to content

Commit 638dc43

Browse files
committed
Add a portal
0 parents  commit 638dc43

13 files changed

Lines changed: 407 additions & 0 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor
6+
.DS_Store

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"semi": false,
4+
"trailingComma": "all"
5+
}

404.html

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

Gemfile

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

Gemfile.lock

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (6.0.4)
5+
concurrent-ruby (~> 1.0, >= 1.0.2)
6+
i18n (>= 0.7, < 2)
7+
minitest (~> 5.1)
8+
tzinfo (~> 1.1)
9+
zeitwerk (~> 2.2, >= 2.2.2)
10+
addressable (2.8.0)
11+
public_suffix (>= 2.0.2, < 5.0)
12+
coffee-script (2.4.1)
13+
coffee-script-source
14+
execjs
15+
coffee-script-source (1.11.1)
16+
colorator (1.1.0)
17+
commonmarker (0.17.13)
18+
ruby-enum (~> 0.5)
19+
concurrent-ruby (1.1.9)
20+
dnsruby (1.61.7)
21+
simpleidn (~> 0.1)
22+
em-websocket (0.5.2)
23+
eventmachine (>= 0.12.9)
24+
http_parser.rb (~> 0.6.0)
25+
ethon (0.14.0)
26+
ffi (>= 1.15.0)
27+
eventmachine (1.2.7)
28+
execjs (2.8.1)
29+
faraday (1.6.0)
30+
faraday-em_http (~> 1.0)
31+
faraday-em_synchrony (~> 1.0)
32+
faraday-excon (~> 1.1)
33+
faraday-httpclient (~> 1.0.1)
34+
faraday-net_http (~> 1.0)
35+
faraday-net_http_persistent (~> 1.1)
36+
faraday-patron (~> 1.0)
37+
faraday-rack (~> 1.0)
38+
multipart-post (>= 1.2, < 3)
39+
ruby2_keywords (>= 0.0.4)
40+
faraday-em_http (1.0.0)
41+
faraday-em_synchrony (1.0.0)
42+
faraday-excon (1.1.0)
43+
faraday-httpclient (1.0.1)
44+
faraday-net_http (1.0.1)
45+
faraday-net_http_persistent (1.2.0)
46+
faraday-patron (1.0.0)
47+
faraday-rack (1.0.0)
48+
ffi (1.15.3)
49+
forwardable-extended (2.6.0)
50+
gemoji (3.0.1)
51+
github-pages (217)
52+
github-pages-health-check (= 1.17.2)
53+
jekyll (= 3.9.0)
54+
jekyll-avatar (= 0.7.0)
55+
jekyll-coffeescript (= 1.1.1)
56+
jekyll-commonmark-ghpages (= 0.1.6)
57+
jekyll-default-layout (= 0.1.4)
58+
jekyll-feed (= 0.15.1)
59+
jekyll-gist (= 1.5.0)
60+
jekyll-github-metadata (= 2.13.0)
61+
jekyll-mentions (= 1.6.0)
62+
jekyll-optional-front-matter (= 0.3.2)
63+
jekyll-paginate (= 1.1.0)
64+
jekyll-readme-index (= 0.3.0)
65+
jekyll-redirect-from (= 0.16.0)
66+
jekyll-relative-links (= 0.6.1)
67+
jekyll-remote-theme (= 0.4.3)
68+
jekyll-sass-converter (= 1.5.2)
69+
jekyll-seo-tag (= 2.7.1)
70+
jekyll-sitemap (= 1.4.0)
71+
jekyll-titles-from-headings (= 0.5.3)
72+
jemoji (= 0.12.0)
73+
kramdown (= 2.3.1)
74+
kramdown-parser-gfm (= 1.1.0)
75+
liquid (= 4.0.3)
76+
mercenary (~> 0.3)
77+
minima (= 2.5.1)
78+
nokogiri (>= 1.10.4, < 2.0)
79+
rouge (= 3.26.0)
80+
terminal-table (~> 1.4)
81+
github-pages-health-check (1.17.2)
82+
addressable (~> 2.3)
83+
dnsruby (~> 1.60)
84+
octokit (~> 4.0)
85+
public_suffix (>= 2.0.2, < 5.0)
86+
typhoeus (~> 1.3)
87+
html-pipeline (2.14.0)
88+
activesupport (>= 2)
89+
nokogiri (>= 1.4)
90+
http_parser.rb (0.6.0)
91+
i18n (0.9.5)
92+
concurrent-ruby (~> 1.0)
93+
jekyll (3.9.0)
94+
addressable (~> 2.4)
95+
colorator (~> 1.0)
96+
em-websocket (~> 0.5)
97+
i18n (~> 0.7)
98+
jekyll-sass-converter (~> 1.0)
99+
jekyll-watch (~> 2.0)
100+
kramdown (>= 1.17, < 3)
101+
liquid (~> 4.0)
102+
mercenary (~> 0.3.3)
103+
pathutil (~> 0.9)
104+
rouge (>= 1.7, < 4)
105+
safe_yaml (~> 1.0)
106+
jekyll-avatar (0.7.0)
107+
jekyll (>= 3.0, < 5.0)
108+
jekyll-coffeescript (1.1.1)
109+
coffee-script (~> 2.2)
110+
coffee-script-source (~> 1.11.1)
111+
jekyll-commonmark (1.3.1)
112+
commonmarker (~> 0.14)
113+
jekyll (>= 3.7, < 5.0)
114+
jekyll-commonmark-ghpages (0.1.6)
115+
commonmarker (~> 0.17.6)
116+
jekyll-commonmark (~> 1.2)
117+
rouge (>= 2.0, < 4.0)
118+
jekyll-default-layout (0.1.4)
119+
jekyll (~> 3.0)
120+
jekyll-feed (0.15.1)
121+
jekyll (>= 3.7, < 5.0)
122+
jekyll-gist (1.5.0)
123+
octokit (~> 4.2)
124+
jekyll-github-metadata (2.13.0)
125+
jekyll (>= 3.4, < 5.0)
126+
octokit (~> 4.0, != 4.4.0)
127+
jekyll-mentions (1.6.0)
128+
html-pipeline (~> 2.3)
129+
jekyll (>= 3.7, < 5.0)
130+
jekyll-optional-front-matter (0.3.2)
131+
jekyll (>= 3.0, < 5.0)
132+
jekyll-paginate (1.1.0)
133+
jekyll-readme-index (0.3.0)
134+
jekyll (>= 3.0, < 5.0)
135+
jekyll-redirect-from (0.16.0)
136+
jekyll (>= 3.3, < 5.0)
137+
jekyll-relative-links (0.6.1)
138+
jekyll (>= 3.3, < 5.0)
139+
jekyll-remote-theme (0.4.3)
140+
addressable (~> 2.0)
141+
jekyll (>= 3.5, < 5.0)
142+
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
143+
rubyzip (>= 1.3.0, < 3.0)
144+
jekyll-sass-converter (1.5.2)
145+
sass (~> 3.4)
146+
jekyll-seo-tag (2.7.1)
147+
jekyll (>= 3.8, < 5.0)
148+
jekyll-sitemap (1.4.0)
149+
jekyll (>= 3.7, < 5.0)
150+
jekyll-titles-from-headings (0.5.3)
151+
jekyll (>= 3.3, < 5.0)
152+
jekyll-watch (2.2.1)
153+
listen (~> 3.0)
154+
jemoji (0.12.0)
155+
gemoji (~> 3.0)
156+
html-pipeline (~> 2.2)
157+
jekyll (>= 3.0, < 5.0)
158+
kramdown (2.3.1)
159+
rexml
160+
kramdown-parser-gfm (1.1.0)
161+
kramdown (~> 2.0)
162+
liquid (4.0.3)
163+
listen (3.6.0)
164+
rb-fsevent (~> 0.10, >= 0.10.3)
165+
rb-inotify (~> 0.9, >= 0.9.10)
166+
mercenary (0.3.6)
167+
minima (2.5.1)
168+
jekyll (>= 3.5, < 5.0)
169+
jekyll-feed (~> 0.9)
170+
jekyll-seo-tag (~> 2.1)
171+
minitest (5.14.4)
172+
multipart-post (2.1.1)
173+
nokogiri (1.12.1-arm64-darwin)
174+
racc (~> 1.4)
175+
octokit (4.21.0)
176+
faraday (>= 0.9)
177+
sawyer (~> 0.8.0, >= 0.5.3)
178+
pathutil (0.16.2)
179+
forwardable-extended (~> 2.6)
180+
public_suffix (4.0.6)
181+
racc (1.5.2)
182+
rb-fsevent (0.11.0)
183+
rb-inotify (0.10.1)
184+
ffi (~> 1.0)
185+
rexml (3.2.5)
186+
rouge (3.26.0)
187+
ruby-enum (0.9.0)
188+
i18n
189+
ruby2_keywords (0.0.5)
190+
rubyzip (2.3.2)
191+
safe_yaml (1.0.5)
192+
sass (3.7.4)
193+
sass-listen (~> 4.0.0)
194+
sass-listen (4.0.0)
195+
rb-fsevent (~> 0.9, >= 0.9.4)
196+
rb-inotify (~> 0.9, >= 0.9.7)
197+
sawyer (0.8.2)
198+
addressable (>= 2.3.5)
199+
faraday (> 0.8, < 2.0)
200+
simpleidn (0.2.1)
201+
unf (~> 0.1.4)
202+
terminal-table (1.8.0)
203+
unicode-display_width (~> 1.1, >= 1.1.1)
204+
thread_safe (0.3.6)
205+
typhoeus (1.4.0)
206+
ethon (>= 0.9.0)
207+
tzinfo (1.2.9)
208+
thread_safe (~> 0.1)
209+
unf (0.1.4)
210+
unf_ext
211+
unf_ext (0.0.7.7)
212+
unicode-display_width (1.7.0)
213+
webrick (1.7.0)
214+
zeitwerk (2.4.2)
215+
216+
PLATFORMS
217+
arm64-darwin-20
218+
219+
DEPENDENCIES
220+
github-pages (~> 217)
221+
tzinfo (~> 1.2)
222+
tzinfo-data
223+
wdm (~> 0.1.1)
224+
webrick (~> 1.7)
225+
226+
BUNDLED WITH
227+
2.2.25

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title: The Stupid Hackathon Thailand
2+
description: >-
3+
สร้างสิ่งของเพี้ยน ๆ ที่ไม่มีใครต้องการ และทำไอเดียบ้า ๆ บอ ๆ ให้กลายเป็นจริง ! งาน Hackathon แบบกี๊ค ๆ ที่ไม่จำกัดไอเดีย ไม่เน้นฝั่งธุรกิจ แต่เน้นความสนุกสำหรับนักพัฒนาแบบเพียว ๆ !!

_data/events.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
- title: 'แฮคโง่ ๆ ครั้งที่ 5 ประเทศไทย'
2+
url: '/5/'
3+
image: '/images/5.png'
4+
year: '2021'
5+
date: '2021-07-26 ~ 2021-08-01'
6+
7+
- title: 'stupid hackathon thailand the fourth / virtual 2020'
8+
url: '/4/'
9+
image: '/images/4.jpeg'
10+
year: '2020'
11+
date: '2020-06-24 ~ 2020-06-27'
12+
13+
- title: 'The Stupid Hackathon Thailand #3'
14+
url: '/3/'
15+
image: '/images/3.png'
16+
year: '2019'
17+
date: '2019-04-20 ~ 2019-04-21'
18+
19+
- title: 'The Stupid Hackathon Thailand #2'
20+
url: '/2/'
21+
image: '/images/2.jpeg'
22+
year: '2018'
23+
date: '2018-07-14 ~ 2018-07-15'
24+
25+
- title: 'The Stupid Hackathon Bangkok'
26+
url: '/1/'
27+
image: '/images/1.jpeg'
28+
year: '2017'
29+
date: '2017-09-30 ~ 2017-10-01'

images/1.jpeg

52 KB
Loading

images/2.jpeg

68.5 KB
Loading

images/3.png

109 KB
Loading

0 commit comments

Comments
 (0)