-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from ocefpaf/ohw19_subpath_bake
Ohw19 subpath bake
- Loading branch information
Showing
83 changed files
with
9,085 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ banner_button_url: projects_2019.html | |
banner_button_text: 2019 Hack Projects | ||
|
||
|
||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "" # the base hostname & protocol for your site | ||
baseurl: "/ohw19" # the subpath of your site, e.g. /blog | ||
BASE_PATH : /ohw19 | ||
|
||
# Homepage tiles | ||
tiles-source: posts # accepts "posts" or "pages" | ||
|
@@ -23,17 +23,17 @@ tiles-count: 3 | |
featured-image-source: | ||
|
||
# Social settings | ||
github_url: https://github.com/oceanhackweek | ||
slack_url: https://oceanhackweek.slack.com | ||
email_url: [email protected] | ||
500px_url: | ||
facebook_url: | ||
github_url: https://github.com/oceanhackweek | ||
gitlab_url: | ||
googleplus_url: | ||
instagram_url: | ||
linkedin_url: | ||
pinterest_url: | ||
slack_url: https://oceanhackweek2019.slack.com | ||
twitter_url: | ||
email_url: [email protected] | ||
|
||
# Build settings | ||
markdown: kramdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* | ||
Spectral by HTML5 UP | ||
html5up.net | @ajlkn | ||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) | ||
*/ | ||
|
||
/* Icon */ | ||
|
||
.icon.major { | ||
border: none; | ||
} | ||
|
||
.icon.major:before { | ||
font-size: 3em; | ||
} | ||
|
||
/* Form */ | ||
|
||
label { | ||
color: #2E3842; | ||
} | ||
|
||
input[type="text"], | ||
input[type="password"], | ||
input[type="email"], | ||
select, | ||
textarea { | ||
border: solid 1px #dfdfdf; | ||
} | ||
|
||
/* Button */ | ||
|
||
input[type="submit"], | ||
input[type="reset"], | ||
input[type="button"], | ||
button, | ||
.button { | ||
border: solid 2px #dfdfdf; | ||
} | ||
|
||
input[type="submit"].special, | ||
input[type="reset"].special, | ||
input[type="button"].special, | ||
button.special, | ||
.button.special { | ||
border: 0 !important; | ||
} | ||
|
||
/* Page Wrapper + Menu */ | ||
|
||
#menu { | ||
display: none; | ||
} | ||
|
||
body.is-menu-visible #menu { | ||
display: block; | ||
} | ||
|
||
/* Header */ | ||
|
||
#header nav > ul > li > a.menuToggle:after { | ||
display: none; | ||
} | ||
|
||
/* Banner + Wrapper (style4) */ | ||
|
||
#banner, | ||
.wrapper.style4 { | ||
-ms-behavior: url("assets/js/ie/backgroundsize.min.htc"); | ||
} | ||
|
||
#banner:before, | ||
.wrapper.style4:before { | ||
display: none; | ||
} | ||
|
||
/* Banner */ | ||
|
||
#banner .more { | ||
height: 4em; | ||
} | ||
|
||
#banner .more:after { | ||
display: none; | ||
} | ||
|
||
/* Main */ | ||
|
||
#main > header { | ||
-ms-behavior: url("assets/js/ie/backgroundsize.min.htc"); | ||
} | ||
|
||
#main > header:before { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* | ||
Spectral by HTML5 UP | ||
html5up.net | @ajlkn | ||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) | ||
*/ | ||
|
||
/* Spotlight */ | ||
|
||
.spotlight { | ||
display: block; | ||
} | ||
|
||
.spotlight .image { | ||
display: inline-block; | ||
vertical-align: top; | ||
} | ||
|
||
.spotlight .content { | ||
padding: 4em 4em 2em 4em ; | ||
display: inline-block; | ||
} | ||
|
||
.spotlight:after { | ||
clear: both; | ||
content: ''; | ||
display: block; | ||
} | ||
|
||
/* Features */ | ||
|
||
.features { | ||
display: block; | ||
} | ||
|
||
.features li { | ||
float: left; | ||
} | ||
|
||
.features:after { | ||
content: ''; | ||
display: block; | ||
clear: both; | ||
} | ||
|
||
/* Banner + Wrapper (style4) */ | ||
|
||
#banner, | ||
.wrapper.style4 { | ||
background-image: url("../../assets/images/banner.jpg"); | ||
background-position: center center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
position: relative; | ||
} | ||
|
||
#banner:before, | ||
.wrapper.style4:before { | ||
background: #000000; | ||
content: ''; | ||
height: 100%; | ||
left: 0; | ||
opacity: 0.5; | ||
position: absolute; | ||
top: 0; | ||
width: 100%; | ||
} | ||
|
||
#banner .inner, | ||
.wrapper.style4 .inner { | ||
position: relative; | ||
z-index: 1; | ||
} | ||
|
||
/* Banner */ | ||
|
||
#banner { | ||
padding: 14em 0 12em 0 ; | ||
height: auto; | ||
} | ||
|
||
#banner:after { | ||
display: none; | ||
} | ||
|
||
/* CTA */ | ||
|
||
#cta .inner header { | ||
float: left; | ||
} | ||
|
||
#cta .inner .actions { | ||
float: left; | ||
} | ||
|
||
#cta .inner:after { | ||
clear: both; | ||
content: ''; | ||
display: block; | ||
} | ||
|
||
/* Main */ | ||
|
||
#main > header { | ||
background-image: url("../../assets/images/banner.jpg"); | ||
background-position: center center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
position: relative; | ||
} | ||
|
||
#main > header:before { | ||
background: #000000; | ||
content: ''; | ||
height: 100%; | ||
left: 0; | ||
opacity: 0.5; | ||
position: absolute; | ||
top: 0; | ||
width: 100%; | ||
} | ||
|
||
#main > header > * { | ||
position: relative; | ||
z-index: 1; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.