diff --git a/assets/.gitkeep b/assets/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..6f6ca5d --- /dev/null +++ b/build.sh @@ -0,0 +1,24 @@ +#!/bin/bash +set -euxo pipefail + +cd "${BASH_SOURCE[0]%/*}" + +rm -rf build +mkdir build + +( + echo "Building HTML" + shopt -s extglob + while IFS= read -r -d '' || [[ "${REPLY}" ]]; do + cat header.html "${REPLY}" footer.html >"./build/${REPLY}" + done < <(find . -maxdepth 1 -type f -name '*.html' -not -name 'header.html' -and -not -name 'footer.html' -print0) +) + +cp -vr css/ images/ build/ + +# ( +# echo "Building images" +# for i in ./assets/*.*; do +# if (($(stat -c %Y "${i}") > $(stat -c %Y "${i}"))); then +# fi +# ) diff --git a/styles.css b/build/css/style.css similarity index 100% rename from styles.css rename to build/css/style.css diff --git a/fa.png b/build/images/fa.png similarity index 100% rename from fa.png rename to build/images/fa.png diff --git a/go.png b/build/images/go.png similarity index 100% rename from go.png rename to build/images/go.png diff --git a/in.png b/build/images/in.png similarity index 100% rename from in.png rename to build/images/in.png diff --git a/tw.png b/build/images/tw.png similarity index 100% rename from tw.png rename to build/images/tw.png diff --git a/build/index.html b/build/index.html new file mode 100644 index 0000000..9dcb9ea --- /dev/null +++ b/build/index.html @@ -0,0 +1,238 @@ + + + + + + geocation.com + + + + + + + + + + +
+ +
+
+

Aenean at Ipsum

+

Phasellus quis felis lacinia.

+
+ +
+
+ +
+ Education +
+
+ +
+ Outreach +
+
+ +
+ Community Involvement +
+
+ +
+

Phasellus ac leo eget felis egestas vestibulum nec at velit. Vivamus venenatis, nibh ut tempus viverra, tellus augue pulvinar sapien, at iaculis justo nisi non metus. Quisque quis malesuada arcu, sed ultricies nibh. Duis vehicula metus quis arcu rutrum faucibus eget ut ex. Curabitur lacus justo, iaculis congue suscipit quis, posuere at turpis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec in quam non urna volutpat consequat. Proin mollis ut mauris et venenatis. Vivamus dui nibh, blandit vitae pellentesque sed, finibus sit amet nulla.

+
+
+ +
+
+

Nulla at Tempus

+
+ +
+

Morbi bibendum faucibus placerat. Morbi vulputate, nunc nec pretium condimentum, erat nunc tincidunt leo, scelerisque ullamcorper dui dolor porttitor neque. Donec ut faucibus erat, vel efficitur enim. Fusce sit amet ligula eu libero lacinia condimentum sed in turpis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus pulvinar metus vel neque sagittis, at pharetra tellus tincidunt. Sed semper euismod ipsum, feugiat consequat nisi eleifend et. Duis volutpat gravida efficitur. Nulla iaculis blandit semper. Maecenas eget aliquet libero. Donec sit amet sagittis erat. Sed elementum felis id interdum cursus. Phasellus ac urna feugiat, placerat massa et, vestibulum odio. Aenean eu nisl lobortis, tincidunt ligula rhoncus, convallis mi.

+
+
+ +
+
+

Get Social

+
+ + +
+ + +
+
+

© Copyright 2017 Company Name.

+ +

HTML & CSS by MLPdesign

+
+
+
+ + diff --git a/build/template.html b/build/template.html new file mode 100644 index 0000000..467527e --- /dev/null +++ b/build/template.html @@ -0,0 +1,297 @@ + + + + + + geocation.com + + + + + + + + + + +
+ + + + + + + geocation.com + + + + + + + + + +
+ + +
+
+

Aenean at Ipsum

+

Phasellus quis felis lacinia.

+
+ +
+
+
Random Animals by PlaceIMG +
+
+
Random Architecture by PlaceIMG +
+
+
Random Nature by PlaceIMG +
+
+ +
+

Phasellus ac leo eget felis egestas vestibulum nec at velit. Vivamus venenatis, nibh ut tempus viverra, tellus augue pulvinar sapien, at iaculis justo nisi non metus. Quisque quis malesuada arcu, sed ultricies nibh. Duis vehicula metus quis arcu rutrum faucibus eget ut ex. Curabitur lacus justo, iaculis congue suscipit quis, posuere at turpis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec in quam non urna volutpat consequat. Proin mollis ut mauris et venenatis. Vivamus dui nibh, blandit vitae pellentesque sed, finibus sit amet nulla.

+
+
+ +
+
+

Nulla at Tempus

+
+ +
+

Morbi bibendum faucibus placerat. Morbi vulputate, nunc nec pretium condimentum, erat nunc tincidunt leo, scelerisque ullamcorper dui dolor porttitor neque. Donec ut faucibus erat, vel efficitur enim. Fusce sit amet ligula eu libero lacinia condimentum sed in turpis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus pulvinar metus vel neque sagittis, at pharetra tellus tincidunt. Sed semper euismod ipsum, feugiat consequat nisi eleifend et. Duis volutpat gravida efficitur. Nulla iaculis blandit semper. Maecenas eget aliquet libero. Donec sit amet sagittis erat. Sed elementum felis id interdum cursus. Phasellus ac urna feugiat, placerat massa et, vestibulum odio. Aenean eu nisl lobortis, tincidunt ligula rhoncus, convallis mi.

+
+
+ + + + + +
+
+ +
+

HTML & CSS by MLPdesign

+
+
+
+
+ + +
+
+

© Copyright 2017 Company Name.

+ +

HTML & CSS by MLPdesign

+
+
+
+ + diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..b4a1476 --- /dev/null +++ b/css/style.css @@ -0,0 +1,241 @@ +@import url(http://fonts.googleapis.com/css?family=Abel); + +body { background-color:#fefdfb; color: #555; font-family: 'Abel', sans-serif; font-size: 14px; font-weight:normal;margin: 0; } +a:link, a:visited, a:active{ color:inherit; text-decoration: none; } +a:hover {color: #FC436B; text-decoration:underline; } +img {padding:5px; border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%;} + +.icon, .hide {font-size:20px;} +.right {text-align:right; } +.hide {display: none;} + +#menu { + width:100%; + min-height:35px; + background-color: /*#01dddd #B61B82 #03D7CB*/ green; + position:fixed; + top:0; left:0; +} + +#menu a { + background-color:inherit; + color: #fff; +} + +#menu a:hover { + background: inherit; + color: #ccc; + text-decoration:none; +} + +nav { + display: table; + table-layout: fixed; + width: 70%; + margin: 0 auto; +} + +ul#topnav { + display: table-row; + padding: 0; + overflow: hidden; + position:relative; + bottom:0; +} + +ul#topnav li { + list-style-type: none; + display: table-cell; + text-align:center; + vertical-align:middle; +} + + +ul#topnav li a { + display:block; + padding:4px 0px; +} + +#container { + width:100%; + margin-top:48px; +} + +#pageheader { + display:table; + width:62.5%; + margin:auto; +} + + +.section { + width:62.5%; + border-top:1px solid #eee; + padding:20px 0; + margin:auto; +} + +.pageitem { + display:table; + width:100%; + margin-bottom:15px; + padding-top:15px; + text-align:center; +} + +.pageitem h1 { + font-weight:normal; + color:#555; + margin:0; + text-align:left; +} + +.pageitem h2 { + font-size:32px; + background-color:inherit; + color:#444; + margin-top:0; +} + +.pageitem p em { + background-color:inherit; + color:#444; + font-size:40px; + font-style:normal; + font-weight:100; +} + +.pageitem p { + padding:0 75px; + margin:0; + font-size:18px; + line-height:200%; + } + + +.col { + display: table-cell; +} + + +.col ul#sub { + float:right; + padding:0; + margin:0; +} + +.col ul#sub li { + display:inline; + list-style-type: none; + text-align:right; +} + +.col ul#sub li a { + padding:5px; + background-color:inherit; + color:#777; +} + +.col ul#sub li a:hover { + color:#FC436B; +} + +#footer { + display:table; + width:100%; + margin-bottom:15px; + padding:15px 0; + text-align:left; + font-size:13px; + color:#999; +} + +#footer p { + text-align:left; + padding:0; +} + +ul#bottomnav { + display: table-row; + padding: 0; +} + +ul#bottomnav li { + list-style-type: none; + display: table-cell; + text-align:left; + font-weight:bold; + vertical-align:top; +} + +ul#bottomnav li ul { +padding:0; +padding-bottom:20px; +} + +ul#bottomnav li li { + display: list-item; + font-weight:100; +} + +#credits { + display:table; + width:100%; + text-align:left; + font-size:12px; + color:#999; + line-height:100%; +} + +#show-menu {display: none;} +.responsive { background-color:inherit; color:#fff; text-align:left; font-weight:normal; font-size:1.5em; padding: 0; position:absolute; top:10%; left:5%; display:none; } +@media screen and (max-width : 700px){ + +/* menu */ + +ul#topnav {display:none;} +.hide, .responsive { display:block;} +.icon { display:none;} +.logo { position:absolute; top:10%; right:50%;} +.search {position:absolute; top:10%; right:5%; } + +#show-menu:checked ~ ul#topnav {display: block; position: absolute; top:100%; width:100%; margin:0; overflow:visible; } +ul#topnav li { display: block; text-align:left; margin:0 0 1px -15%; background-color:#FC436B;} +ul#topnav li a { padding-left:20px;} + +.pageitem p{ + padding:0; +} + +.col { + float:left; + margin:auto; + width:100%; + text-align:center; +} + +.col ul#sub { + clear:both; + float:none; + margin:auto; +} + +.col ul#sub li { + text-align:center; +} + +ul#bottomnav { + display: list-item; + list-style-type: none; + } + +ul#bottomnav li { + display:block; + text-align:center; +} + +#credits p{ +text-align:center; +} diff --git a/footer.html b/footer.html new file mode 100644 index 0000000..2c3e90f --- /dev/null +++ b/footer.html @@ -0,0 +1,10 @@ +
+
+

© Copyright 2017 Company Name.

+ +

HTML & CSS by MLPdesign

+
+
+ + + diff --git a/header.html b/header.html new file mode 100644 index 0000000..c1b90ff --- /dev/null +++ b/header.html @@ -0,0 +1,46 @@ + + + + + + geocation.com + + + + + + + + + + +
+ diff --git a/images/fa.png b/images/fa.png new file mode 100644 index 0000000..4f18f61 Binary files /dev/null and b/images/fa.png differ diff --git a/images/go.png b/images/go.png new file mode 100644 index 0000000..a36ec5b Binary files /dev/null and b/images/go.png differ diff --git a/images/in.png b/images/in.png new file mode 100644 index 0000000..899057a Binary files /dev/null and b/images/in.png differ diff --git a/images/tw.png b/images/tw.png new file mode 100644 index 0000000..5b2a481 Binary files /dev/null and b/images/tw.png differ diff --git a/index.html b/index.html index d133e9c..ed9a393 100644 --- a/index.html +++ b/index.html @@ -1,50 +1,3 @@ - - - - - - geocation.com - - - - - - - - - - -
- -

Aenean at Ipsum

@@ -53,13 +6,19 @@
-
Random Animals by PlaceIMG + +
+ Education
-
Random Architecture by PlaceIMG + +
+ Outreach
-
Random Nature by PlaceIMG + +
+ Community Involvement
@@ -86,7 +45,7 @@ --> - - -
- - diff --git a/orig/1. TAS Miss Cook Book Cover.png b/orig/1._TAS_Miss_Cook_Book_Cover.png similarity index 100% rename from orig/1. TAS Miss Cook Book Cover.png rename to orig/1._TAS_Miss_Cook_Book_Cover.png diff --git a/orig/2. TIA Book Cover.png b/orig/2._TIA_Book_Cover.png similarity index 100% rename from orig/2. TIA Book Cover.png rename to orig/2._TIA_Book_Cover.png diff --git a/orig/3. TAS Hydrography Book Cover.png b/orig/3._TAS_Hydrography_Book_Cover.png similarity index 100% rename from orig/3. TAS Hydrography Book Cover.png rename to orig/3._TAS_Hydrography_Book_Cover.png diff --git a/orig/4. TAS Fisheries book Cover.png b/orig/4._TAS_Fisheries_book_Cover.png similarity index 100% rename from orig/4. TAS Fisheries book Cover.png rename to orig/4._TAS_Fisheries_book_Cover.png diff --git a/orig/4b. FisheriesTAScover.png b/orig/4b._FisheriesTAScover.png similarity index 100% rename from orig/4b. FisheriesTAScover.png rename to orig/4b._FisheriesTAScover.png diff --git a/orig/5. Elementary GLOBE Climate Book Cover.jpg b/orig/5._Elementary_GLOBE_Climate_Book_Cover.jpg similarity index 100% rename from orig/5. Elementary GLOBE Climate Book Cover.jpg rename to orig/5._Elementary_GLOBE_Climate_Book_Cover.jpg diff --git a/orig/Diane Student Scammon Bay.png b/orig/Diane_Student_Scammon_Bay.png similarity index 100% rename from orig/Diane Student Scammon Bay.png rename to orig/Diane_Student_Scammon_Bay.png diff --git a/orig/Elementary GLOBE Climate Book Cover.jpg b/orig/Elementary GLOBE Climate Book Cover.jpg deleted file mode 100644 index 00796ed..0000000 Binary files a/orig/Elementary GLOBE Climate Book Cover.jpg and /dev/null differ diff --git a/orig/JASON 3D Climate Seas of Change Cover.png b/orig/JASON_3D_Climate_Seas_of_Change_Cover.png similarity index 100% rename from orig/JASON 3D Climate Seas of Change Cover.png rename to orig/JASON_3D_Climate_Seas_of_Change_Cover.png diff --git a/orig/JASON Learning- climate_expedition_2.png b/orig/JASON_Learning-_climate_expedition_2.png similarity index 100% rename from orig/JASON Learning- climate_expedition_2.png rename to orig/JASON_Learning-_climate_expedition_2.png diff --git a/orig/JASON Learning Climate-Seas of Change-Cover-2015.png b/orig/JASON_Learning_Climate-Seas_of_Change-Cover-2015.png similarity index 100% rename from orig/JASON Learning Climate-Seas of Change-Cover-2015.png rename to orig/JASON_Learning_Climate-Seas_of_Change-Cover-2015.png diff --git a/orig/Scammon 2017-11-04RHawk206AlaskaNOAA.jpg b/orig/Scammon_2017-11-04RHawk206AlaskaNOAA.jpg similarity index 100% rename from orig/Scammon 2017-11-04RHawk206AlaskaNOAA.jpg rename to orig/Scammon_2017-11-04RHawk206AlaskaNOAA.jpg diff --git a/orig/Scammon 2017-11-04RHawk334AlaskaNOAA.jpg b/orig/Scammon_2017-11-04RHawk334AlaskaNOAA.jpg similarity index 100% rename from orig/Scammon 2017-11-04RHawk334AlaskaNOAA.jpg rename to orig/Scammon_2017-11-04RHawk334AlaskaNOAA.jpg diff --git a/orig/Scammon 2017-11-04RHawk366AlaskaNOAA.jpg b/orig/Scammon_2017-11-04RHawk366AlaskaNOAA.jpg similarity index 100% rename from orig/Scammon 2017-11-04RHawk366AlaskaNOAA.jpg rename to orig/Scammon_2017-11-04RHawk366AlaskaNOAA.jpg diff --git a/orig/Scammon 2017-11-04RHawk414AlaskaNOAA.jpg b/orig/Scammon_2017-11-04RHawk414AlaskaNOAA.jpg similarity index 100% rename from orig/Scammon 2017-11-04RHawk414AlaskaNOAA.jpg rename to orig/Scammon_2017-11-04RHawk414AlaskaNOAA.jpg diff --git a/orig/Scammon 2017-11-04RHawk423AlaskaNOAA.jpg b/orig/Scammon_2017-11-04RHawk423AlaskaNOAA.jpg similarity index 100% rename from orig/Scammon 2017-11-04RHawk423AlaskaNOAA.jpg rename to orig/Scammon_2017-11-04RHawk423AlaskaNOAA.jpg diff --git a/orig/Stanitski Adler JASON Argonauts.png b/orig/Stanitski_Adler_JASON_Argonauts.png similarity index 100% rename from orig/Stanitski Adler JASON Argonauts.png rename to orig/Stanitski_Adler_JASON_Argonauts.png diff --git a/orig/Stanitski Adler JASON Argonauts 2.png b/orig/Stanitski_Adler_JASON_Argonauts_2.png similarity index 100% rename from orig/Stanitski Adler JASON Argonauts 2.png rename to orig/Stanitski_Adler_JASON_Argonauts_2.png diff --git a/orig/Stanitski Biography_April 2022.docx b/orig/Stanitski_Biography_April_2022.docx similarity index 100% rename from orig/Stanitski Biography_April 2022.docx rename to orig/Stanitski_Biography_April_2022.docx diff --git a/orig/Stanitski website.docx b/orig/Stanitski_website.docx similarity index 100% rename from orig/Stanitski website.docx rename to orig/Stanitski_website.docx