-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 11c7a21
Showing
162 changed files
with
3,822 additions
and
0 deletions.
There are no files selected for viewing
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,6 @@ | ||
# Ignore built site | ||
_site/ | ||
|
||
# Ignore scripts | ||
*.sh | ||
*.bat |
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,203 @@ | ||
# Disable directory listings | ||
Options -Indexes | ||
|
||
# 404 page | ||
ErrorDocument 404 /404/ | ||
|
||
# W3TC Browser Cache | ||
<IfModule mod_mime.c> | ||
AddType text/css .css | ||
AddType text/x-component .htc | ||
AddType application/x-javascript .js | ||
AddType application/javascript .js2 | ||
AddType text/javascript .js3 | ||
AddType text/x-js .js4 | ||
AddType text/html .html .htm | ||
AddType text/richtext .rtf .rtx | ||
AddType image/svg+xml .svg .svgz | ||
AddType text/plain .txt | ||
AddType text/xsd .xsd | ||
AddType text/xsl .xsl | ||
AddType text/xml .xml | ||
AddType video/asf .asf .asx .wax .wmv .wmx | ||
AddType video/avi .avi | ||
AddType image/bmp .bmp | ||
AddType application/java .class | ||
AddType video/divx .divx | ||
AddType application/msword .doc .docx | ||
AddType application/vnd.ms-fontobject .eot | ||
AddType application/x-msdownload .exe | ||
AddType image/gif .gif | ||
AddType application/x-gzip .gz .gzip | ||
AddType image/x-icon .ico | ||
AddType image/jpeg .jpg .jpeg .jpe | ||
AddType application/json .json | ||
AddType application/vnd.ms-access .mdb | ||
AddType audio/midi .mid .midi | ||
AddType video/quicktime .mov .qt | ||
AddType audio/mpeg .mp3 .m4a | ||
AddType video/mp4 .mp4 .m4v | ||
AddType video/mpeg .mpeg .mpg .mpe | ||
AddType application/vnd.ms-project .mpp | ||
AddType application/x-font-otf .otf | ||
AddType application/vnd.oasis.opendocument.database .odb | ||
AddType application/vnd.oasis.opendocument.chart .odc | ||
AddType application/vnd.oasis.opendocument.formula .odf | ||
AddType application/vnd.oasis.opendocument.graphics .odg | ||
AddType application/vnd.oasis.opendocument.presentation .odp | ||
AddType application/vnd.oasis.opendocument.spreadsheet .ods | ||
AddType application/vnd.oasis.opendocument.text .odt | ||
AddType audio/ogg .ogg | ||
AddType application/pdf .pdf | ||
AddType image/png .png | ||
AddType application/vnd.ms-powerpoint .pot .pps .ppt .pptx | ||
AddType audio/x-realaudio .ra .ram | ||
AddType application/x-shockwave-flash .swf | ||
AddType application/x-tar .tar | ||
AddType image/tiff .tif .tiff | ||
AddType application/x-font-ttf .ttf .ttc | ||
AddType audio/wav .wav | ||
AddType audio/wma .wma | ||
AddType application/vnd.ms-write .wri | ||
AddType application/vnd.ms-excel .xla .xls .xlsx .xlt .xlw | ||
AddType application/zip .zip | ||
</IfModule> | ||
<IfModule mod_expires.c> | ||
ExpiresActive On | ||
ExpiresByType text/css A31536000 | ||
ExpiresByType text/x-component A31536000 | ||
ExpiresByType application/x-javascript A31536000 | ||
ExpiresByType application/javascript A31536000 | ||
ExpiresByType text/javascript A31536000 | ||
ExpiresByType text/x-js A31536000 | ||
ExpiresByType text/html A3600 | ||
ExpiresByType text/richtext A3600 | ||
ExpiresByType image/svg+xml A3600 | ||
ExpiresByType text/plain A3600 | ||
ExpiresByType text/xsd A3600 | ||
ExpiresByType text/xsl A3600 | ||
ExpiresByType text/xml A3600 | ||
ExpiresByType video/asf A31536000 | ||
ExpiresByType video/avi A31536000 | ||
ExpiresByType image/bmp A31536000 | ||
ExpiresByType application/java A31536000 | ||
ExpiresByType video/divx A31536000 | ||
ExpiresByType application/msword A31536000 | ||
ExpiresByType application/vnd.ms-fontobject A31536000 | ||
ExpiresByType application/x-msdownload A31536000 | ||
ExpiresByType image/gif A31536000 | ||
ExpiresByType application/x-gzip A31536000 | ||
ExpiresByType image/x-icon A31536000 | ||
ExpiresByType image/jpeg A31536000 | ||
ExpiresByType application/json A31536000 | ||
ExpiresByType application/vnd.ms-access A31536000 | ||
ExpiresByType audio/midi A31536000 | ||
ExpiresByType video/quicktime A31536000 | ||
ExpiresByType audio/mpeg A31536000 | ||
ExpiresByType video/mp4 A31536000 | ||
ExpiresByType video/mpeg A31536000 | ||
ExpiresByType application/vnd.ms-project A31536000 | ||
ExpiresByType application/x-font-otf A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.database A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.chart A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.formula A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.graphics A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.presentation A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.spreadsheet A31536000 | ||
ExpiresByType application/vnd.oasis.opendocument.text A31536000 | ||
ExpiresByType audio/ogg A31536000 | ||
ExpiresByType application/pdf A31536000 | ||
ExpiresByType image/png A31536000 | ||
ExpiresByType application/vnd.ms-powerpoint A31536000 | ||
ExpiresByType audio/x-realaudio A31536000 | ||
ExpiresByType image/svg+xml A31536000 | ||
ExpiresByType application/x-shockwave-flash A31536000 | ||
ExpiresByType application/x-tar A31536000 | ||
ExpiresByType image/tiff A31536000 | ||
ExpiresByType application/x-font-ttf A31536000 | ||
ExpiresByType audio/wav A31536000 | ||
ExpiresByType audio/wma A31536000 | ||
ExpiresByType application/vnd.ms-write A31536000 | ||
ExpiresByType application/vnd.ms-excel A31536000 | ||
ExpiresByType application/zip A31536000 | ||
</IfModule> | ||
<IfModule mod_deflate.c> | ||
<IfModule mod_headers.c> | ||
Header append Vary User-Agent env=!dont-vary | ||
</IfModule> | ||
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json | ||
<IfModule mod_mime.c> | ||
# DEFLATE by extension | ||
AddOutputFilter DEFLATE js css htm html xml | ||
</IfModule> | ||
</IfModule> | ||
<FilesMatch "\.(css|htc|js|js2|js3|js4|CSS|HTC|JS|JS2|JS3|JS4)$"> | ||
FileETag MTime Size | ||
<IfModule mod_headers.c> | ||
Header set Pragma "public" | ||
Header set Cache-Control "public, must-revalidate, proxy-revalidate" | ||
</IfModule> | ||
</FilesMatch> | ||
<FilesMatch "\.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|HTML|HTM|RTF|RTX|SVG|SVGZ|TXT|XSD|XSL|XML)$"> | ||
FileETag MTime Size | ||
<IfModule mod_headers.c> | ||
Header set Pragma "public" | ||
Header set Cache-Control "public, must-revalidate, proxy-revalidate" | ||
</IfModule> | ||
</FilesMatch> | ||
<FilesMatch "\.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip|ASF|ASX|WAX|WMV|WMX|AVI|BMP|CLASS|DIVX|DOC|DOCX|EOT|EXE|GIF|GZ|GZIP|ICO|JPG|JPEG|JPE|JSON|MDB|MID|MIDI|MOV|QT|MP3|M4A|MP4|M4V|MPEG|MPG|MPE|MPP|OTF|ODB|ODC|ODF|ODG|ODP|ODS|ODT|OGG|PDF|PNG|POT|PPS|PPT|PPTX|RA|RAM|SVG|SVGZ|SWF|TAR|TIF|TIFF|TTF|TTC|WAV|WMA|WRI|XLA|XLS|XLSX|XLT|XLW|ZIP)$"> | ||
FileETag MTime Size | ||
<IfModule mod_headers.c> | ||
Header set Pragma "public" | ||
Header set Cache-Control "public, must-revalidate, proxy-revalidate" | ||
</IfModule> | ||
</FilesMatch> | ||
|
||
# 2006 site redirects | ||
Redirect 301 /index.html / | ||
Redirect 301 /camp_history.htm /about/history/ | ||
Redirect 301 /west_hill_pond.htm /about/west-hill-pond/ | ||
Redirect 301 /camp_map.htm /about/map/ | ||
Redirect 301 /directions.htm /about/directions/ | ||
Redirect 301 /Camp_directors.htm /about/camp-directors/ | ||
Redirect 301 /Testimonials.htm /about/testimonials/ | ||
Redirect 301 /camp_staff.htm /about/staff/ | ||
Redirect 301 /dates.html /boy-scouts/resident-camp/ | ||
Redirect 301 /guides.htm /boy-scouts/guides/ | ||
Redirect 301 /Res_camp.htm /boy-scouts/resident-camp/ | ||
Redirect 301 /plan.html /boy-scouts/planning/ | ||
Redirect 301 /Trail_Eagle.htm /boy-scouts/trail-to-eagle/ | ||
Redirect 301 /Day_camp.htm /cub-scouts/day-camp/ | ||
Redirect 301 /webelos_camp.htm /cub-scouts/webelos-resident-camp/ | ||
Redirect 301 /baloos_camp.html /cub-scouts/family-weekend/ | ||
Redirect 301 /cubexperience_camp.html /cub-scouts/mini-week/ | ||
Redirect 301 /medform.htm /boy-scouts/forms/ | ||
Redirect 301 /campership.htm /boy-scouts/forms/ | ||
Redirect 301 /staff_app.htm /get-involved/staff/ | ||
Redirect 301 /discover_scuba.html /boy-scouts/special-programs/scuba/ | ||
Redirect 301 /sched_info.htm /boy-scouts/planning/ | ||
Redirect 301 /Shawtown.htm /get-involved/citizens-of-shawtown/ | ||
Redirect 301 /work_days2.htm /get-involved/work-days/ | ||
Redirect 301 /campmasters.htm /get-involved/campmasters/ | ||
Redirect 301 /con_proj.htm /about/news-events/ | ||
Redirect 301 /Adopt_bench.htm /about/news-events/ | ||
Redirect 301 /shorttermcamping.html /short-term-camping/ | ||
Redirect 301 /shorttermcamping/boathouse.html /short-term-camping/boathouse/ | ||
Redirect 301 /shorttermcamping/griffin.html /short-term-camping/griffin-lodge/ | ||
Redirect 301 /shorttermcamping/weed.html /short-term-camping/weed-lodge/ | ||
Redirect 301 /shorttermcamping/scoutmasters.html /short-term-camping/scoutmasters-cabin/ | ||
Redirect 301 /shorttermcamping/dininghall.html /short-term-camping/dining-hall/ | ||
Redirect 301 /shorttermcamping/kitchen.html /short-term-camping/kitchen/ | ||
Redirect 301 /shorttermcamping/conferencerooms.html /short-term-camping/conference-rooms/ | ||
Redirect 301 /shorttermcamping/pavilion.html /short-term-camping/parade-ground-pavilion/ | ||
Redirect 301 /shorttermcamping/chapel.html /short-term-camping/chapel/ | ||
|
||
Redirect 301 /history/ /about/history/vignettes/ | ||
Redirect 301 /history/vignettes/1/ /about/history/vignettes/1/ | ||
Redirect 301 /history/vignettes/2/ /about/history/vignettes/2/ | ||
Redirect 301 /history/vignettes/3/ /about/history/vignettes/3/ | ||
Redirect 301 /history/vignettes/4/ /about/history/vignettes/4/ | ||
Redirect 301 /history/vignettes/5/ /about/history/vignettes/5/ | ||
Redirect 301 /history/vignettes/6/ /about/history/vignettes/6/ | ||
Redirect 301 /history/vignettes/7/ /about/history/vignettes/7/ | ||
Redirect 301 /history/vignettes/8/ /about/history/vignettes/8/ |
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,27 @@ | ||
--- | ||
title: Page Not Found | ||
priority: 0 | ||
--- | ||
|
||
{% include header.html %} | ||
{% include navbar.html %} | ||
|
||
<!-- Main content --> | ||
<div class="container main"> | ||
|
||
<!-- Main column --> | ||
<div class="text-center"> | ||
<h1>Error 404: Page Not Found</h1> | ||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px" viewBox="0 0 100 100"> | ||
<path d="M99.689,97.089L86.3,62.412c-0.198-0.514-0.601-0.923-1.11-1.13l-19.926-8.113 c-0.453-0.185-0.957-0.196-1.418-0.035l-0.729,0.257c5.917-9.216,12.663-21.665,12.663-30.548C75.779,10.247,65.514,0,52.891,0 c-12.622,0-22.89,10.247-22.89,22.842c0,10.884,10.205,27.113,16.58,36.192l-19.372-6.545c-0.729-0.246-1.541-0.052-2.078,0.502 L0.74,78.125c-0.429,0.441-0.63,1.057-0.544,1.664c0.085,0.609,0.446,1.146,0.979,1.452l31.693,18.276c0.001,0,0.002,0,0.003,0 l0.028,0.018c0.021,0.012,0.044,0.017,0.065,0.025c0.088,0.047,0.175,0.094,0.271,0.129c0.025,0.009,0.052,0.012,0.077,0.02 c0.035,0.012,0.07,0.02,0.106,0.027c0.121,0.031,0.242,0.05,0.363,0.058c0.024,0.001,0.049,0.006,0.073,0.006 c0.015,0,0.029,0.005,0.044,0.005c0.04,0,0.078-0.017,0.118-0.02c0.136-0.008,0.27-0.026,0.403-0.062 c0.065-0.018,0.126-0.041,0.189-0.064c0.058-0.022,0.119-0.033,0.176-0.062l27.767-13.701c0.186,0.065,0.381,0.113,0.588,0.121 c0.026,0.002,0.053,0.002,0.077,0.002c0.156,0,0.308-0.022,0.453-0.058l33.392,13.692c0.244,0.102,0.504,0.149,0.76,0.149 c0.513,0,1.018-0.196,1.397-0.569C99.793,98.676,99.977,97.833,99.689,97.089z M48.098,43.14c0-2.719,2.25-5.016,4.919-5.016 c2.726,0,5.026,2.297,5.026,5.016c0,2.664-2.302,4.914-5.026,4.914C50.348,48.054,48.098,45.804,48.098,43.14z M43.381,16.387 c-0.418-0.367-0.366-0.992,0-1.358c0,0,3.877-4.6,10.633-4.6c5.547,0,10.682,3.868,10.682,9.145c0,6.895-7.854,7.104-7.854,12.748 c0,0.576-0.473,0.994-0.997,0.994h-5.602c-0.525,0-0.993-0.417-0.993-0.994V30.13c0-4.393,7.228-6.324,7.228-9.667 c0-1.622-1.678-3.084-3.929-3.084c-3.666,0-4.66,3.294-5.97,2.144L43.381,16.387z M32.453,81.23 c1.305,0.482,2.669,0.838,4.055,1.051c0.052,0.008,0.103,0.012,0.153,0.012c0.272,0,0.519-0.118,0.702-0.304l-4.548,12.887 L5.396,79.064l12.361-12.738c0.289,0.646,0.694,1.494,1.24,2.48c0.183,0.33,0.523,0.516,0.876,0.516c0.163,0,0.329-0.04,0.482-0.124 c0.483-0.267,0.659-0.874,0.392-1.356c-0.771-1.395-1.253-2.509-1.48-3.07l7.856-8.097l17.13,5.788l-6.616,18.748 c-0.039-0.447-0.36-0.831-0.825-0.902c-1.252-0.191-2.484-0.513-3.664-0.949c-0.515-0.19-1.093,0.072-1.285,0.59 C31.671,80.465,31.935,81.039,32.453,81.23z M61.803,68.641c-0.378,0.321-0.478,0.873-0.195,1.297 c0.041,0.062,0.09,0.113,0.141,0.162l-0.456,11.965l-23.87,11.779l10.961-31.058l0.716-0.251c1.366,1.852,2.288,3.025,2.458,3.242 c0.344,0.435,0.869,0.688,1.424,0.688h0.004c0.558-0.002,1.082-0.257,1.425-0.693c0.262-0.334,2.299-2.951,5.013-6.856l2.791-0.979 L61.803,68.641z M65.286,82.307l0.509-13.341c0.162-0.036,0.324-0.075,0.488-0.106c0.543-0.102,0.898-0.623,0.797-1.164 c-0.104-0.543-0.624-0.895-1.168-0.797c-0.014,0.002-0.025,0.006-0.039,0.01l0.345-9.04l16.66,6.784L94.287,94.2L65.286,82.307z"/> | ||
<path d="M24.644,73.37c-0.368-0.41-1-0.446-1.412-0.08c-0.412,0.367-0.448,0.997-0.08,1.41 c0.945,1.056,1.952,2.022,2.992,2.874c0.187,0.15,0.41,0.226,0.633,0.226c0.29,0,0.577-0.124,0.774-0.364 c0.351-0.428,0.287-1.057-0.14-1.404C26.451,75.244,25.52,74.352,24.644,73.37z"/> | ||
<path d="M46.831,78.032c-1.209,0.532-2.434,0.997-3.638,1.385c-0.525,0.17-0.814,0.731-0.646,1.257 c0.137,0.424,0.529,0.691,0.952,0.691c0.102,0,0.205-0.016,0.307-0.049c1.27-0.407,2.559-0.898,3.831-1.459 c0.505-0.222,0.734-0.811,0.512-1.314C47.927,78.04,47.338,77.809,46.831,78.032z"/> | ||
<path d="M77.242,68.311c-1.316-0.569-2.656-1.006-3.982-1.293c-0.535-0.117-1.07,0.225-1.189,0.764 c-0.116,0.537,0.227,1.07,0.767,1.188c1.198,0.26,2.412,0.654,3.608,1.174c0.131,0.057,0.266,0.082,0.397,0.082 c0.388,0,0.755-0.225,0.918-0.601C77.98,69.117,77.748,68.529,77.242,68.311z"/> | ||
<path d="M56.164,72.627c-1.184,0.826-2.258,1.539-3.288,2.18c-0.469,0.291-0.61,0.907-0.319,1.375 c0.189,0.303,0.517,0.471,0.851,0.471c0.181,0,0.362-0.049,0.528-0.151c1.06-0.66,2.164-1.394,3.375-2.237 c0.453-0.315,0.562-0.938,0.246-1.391C57.24,72.42,56.617,72.311,56.164,72.627z"/> | ||
<path d="M82.02,72.227c-0.34,0.435-0.265,1.061,0.172,1.4c0.977,0.764,1.961,1.622,2.928,2.559 c0.193,0.187,0.443,0.279,0.695,0.279c0.261,0,0.521-0.102,0.719-0.304c0.384-0.396,0.374-1.027-0.023-1.411 c-1.016-0.98-2.054-1.889-3.086-2.693C82.988,71.716,82.359,71.792,82.02,72.227z"/> | ||
</svg> | ||
</div> | ||
|
||
</div> | ||
|
||
{% include footer.html %} |
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,6 @@ | ||
pygments: false | ||
markdown: rdiscount | ||
rdiscount: | ||
extensions: [smart] | ||
permalink: pretty | ||
url: //campworkcoeman.org |
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,23 @@ | ||
<!-- Footer --> | ||
<div id="footer"> | ||
<div class="container"> | ||
<p class="text-muted credit">Established in <a href="{{ site.url }}/about/history/">1924</a>, Camp Workcoeman is a <a href="http://www.ctrivers.org/">Connecticut Rivers Council</a> Scout camp.</p> | ||
</div> | ||
</div> | ||
|
||
<script type="text/javascript" src="{{ site.url }}/js/script.min.js"></script> | ||
<script type="text/javascript" src="{{ site.url }}/js/slenderbox.js"></script> | ||
|
||
<!-- Google Analytics --> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | ||
ga('create', 'UA-46215130-1', 'campworkcoeman.org'); | ||
ga('send', 'pageview'); | ||
</script> | ||
|
||
<!-- Site design and code by Matthew Petroff (http://www.mpetroff.net/), January 2014. --> | ||
|
||
</html> |
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,84 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<!-- | ||
___ __ __ _ | ||
/ __|__ _ _ __ _ __ \ \ / /__ _ _| |____ ___ ___ _ __ __ _ _ _ | ||
| (__/ _` | ' \| '_ \ \ \/\/ / _ \ '_| / / _/ _ \/ -_) ' \/ _` | ' \ | ||
\___\__,_|_|_|_| .__/ \_/\_/\___/_| |_\_\__\___/\___|_|_|_\__,_|_||_| | ||
|_| | ||
--> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
{% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %} | ||
<meta name="author" content="Camp Workcoeman"> | ||
<meta name="keywords" content="Camp Workcoeman, Workcoeman, camp, Scout camp, Boy Scouts, Scouts, West Hill Pond, New Hartford, 1924, Connecticut Rivers Council{% if page.keywords %}, {% endif %}{{ page.keywords }}"> | ||
|
||
<title>{{ page.title }}</title> | ||
|
||
<link rel="icon" type="image/png" href="{{ site.url }}/css/favicon.png"> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link rel="stylesheet" href="{{ site.url }}/css/bootstrap.min.css"> | ||
|
||
<!-- Google Fonts --> | ||
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,600' rel='stylesheet' type='text/css'> | ||
|
||
<!-- FontAwesome --> | ||
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> | ||
|
||
<!-- Slenderbox --> | ||
<link href="{{ site.url }}/css/slenderbox.css" rel="stylesheet"> | ||
|
||
<!-- Custom styles --> | ||
<link rel="stylesheet" href="{{ site.url }}/css/style.css"> | ||
|
||
<!-- Google+ Publisher Information --> | ||
<link rel="publisher" href="https://plus.google.com/110339649776647978593/"> | ||
|
||
<!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!-- Stylesheet to replace necessary SVGs with PNGs --> | ||
<!--[if lt IE 9]> | ||
<script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
<script src="//oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> | ||
<link rel="stylesheet" href="{{ site.url }}/css/ie-style.css"> | ||
<![endif]--> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<!-- Header --> | ||
<div class="cw-header hidden-print" id="cw-header"> | ||
<div class="sun-moon-container"> | ||
<div class="moon" id="moon"> | ||
<svg width="100%" height="100%" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" version="1.1"> | ||
<path fill="#fff" d="m 0,0" id="phase"/> | ||
</svg> | ||
</div> | ||
</div> | ||
<div class="sun-moon-container"> | ||
<div class="sun" id="sun"></div> | ||
</div> | ||
<div class="hill-center" id="hill-center"></div> | ||
<div class="hills hills-right" id="hills-right"></div> | ||
<div class="hills hills-left flip" id="hills-left"></div> | ||
<div class="trees-right"> | ||
<div class="trees0" id="trees0r"></div> | ||
<div class="trees1" id="trees1r"></div> | ||
<div class="trees2" id="trees2r"></div> | ||
</div> | ||
<div class="trees-left flip"> | ||
<div class="trees0" id="trees0l"></div> | ||
<div class="trees1" id="trees1l"></div> | ||
<div class="trees2" id="trees2l"></div> | ||
</div> | ||
<div class="lake" id="lake"></div> | ||
<div id="fire"></div> | ||
<div id="sunfish"></div> | ||
<div class="cw-header-text"></div> | ||
</div> | ||
<div class="visible-print"> | ||
<h1>Camp Workcoeman</h1> | ||
</div> |
Oops, something went wrong.