diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..74d1a1b Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index 35f4277..45c1505 100644 --- a/.gitignore +++ b/.gitignore @@ -1,33 +1,3 @@ - -#ignore thumbnails created by windows -Thumbs.db -#Ignore files build by Visual Studio -*.obj -*.exe -*.pdb -*.user -*.aps -*.pch -*.vspscc -*_i.c -*_p.c -*.ncb -*.suo -*.tlb -*.tlh -*.bak -*.cache -*.ilk -*.log -[Bb]in -[Dd]ebug*/ -*.lib -*.sbr -obj/ -[Rr]elease*/ -_ReSharper*/ -[Tt]est[Rr]esult* -packages/ -.nuget/ -docs/output/ -temp/ +_site +.sass-cache +.jekyll-metadata diff --git a/404.html b/404.html new file mode 100644 index 0000000..1a64bc6 --- /dev/null +++ b/404.html @@ -0,0 +1,11 @@ +--- +layout: default +title: Not Found +--- + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Assets/FS002-Community-for-F-Sharp-Logo-BL.png b/Assets/FS002-Community-for-F-Sharp-Logo-BL.png new file mode 100644 index 0000000..1f5bf1a Binary files /dev/null and b/Assets/FS002-Community-for-F-Sharp-Logo-BL.png differ diff --git a/Content/style.css b/Content/style.css index 89919a4..3af11ea 100644 --- a/Content/style.css +++ b/Content/style.css @@ -12,7 +12,7 @@ body { .c4-header { color: #fff; - background-color: #497c3d; + background-color: #F99D25; padding: 30px 15px 40px; /* side padding builds on .container 15px, so 30px */ font-size: 16px; text-align: center; @@ -21,6 +21,11 @@ body { .c4-header h1 { color: #fff; + width: 100%; +} + +.c4-header h1 img { + width: 100%; } .c4-header p { diff --git a/Content/style.min.css b/Content/style.min.css deleted file mode 100644 index 630d6dd..0000000 --- a/Content/style.min.css +++ /dev/null @@ -1 +0,0 @@ -body{position:relative;padding-top:50px}.c4-header{color:#fff;background-color:#497c3d;padding:30px 15px 40px;font-size:16px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.15)}.c4-header h1{color:#fff}.c4-header p{font-weight:300;line-height:1.5}.c4-header .container{position:relative}@media(min-width:768px){.c4-header{font-size:21px;text-align:left}.c4-header h1{font-size:60px;line-height:1}}@media(min-width:992px){.c4-header h1,.c4-header p{margin-right:380px}}.c4-footer{padding-top:40px;padding-bottom:30px;margin-top:100px;color:#777;text-align:center;border-top:1px solid #e5e5e5}@media(min-width:768px){.c4-footer{text-align:left}.c4-footer p{margin-bottom:0}}#content{padding-top:30px}.c4-brand.navbar-brand{color:#fff}.affix.c4-sidebar{position:static}.c4-sidenav{margin-top:30px;margin-bottom:30px;padding-top:10px;padding-bottom:10px;text-shadow:0 1px 0 #fff;background-color:#f7f5fa;border-radius:5px}.c4-sidebar .nav>li>a{display:block;color:#716b7a;padding:5px 20px}.c4-sidebar .nav>li>a:hover,.c4-sidebar .nav>li>a:focus{text-decoration:none;background-color:#e5e3e9;border-right:1px solid #dbd8e0}.c4-sidebar .nav>.active>a,.c4-sidebar .nav>.active:hover>a,.c4-sidebar .nav>.active:focus>a{font-weight:bold;color:#497c3d;background-color:transparent;border-right:1px solid #497c3d}.c4-sidebar .nav .nav{display:none;margin-bottom:8px}.c4-sidebar .nav .nav>li>a{padding-top:3px;padding-bottom:3px;padding-left:30px;font-size:90%}@media(min-width:992px){.c4-sidebar .nav>.active>ul{display:block}.c4-sidebar.affix,.c4-sidebar.affix-bottom{width:213px}.c4-sidebar.affix{position:fixed;top:80px}.c4-sidebar.affix-bottom{position:absolute}.c4-sidebar.affix-bottom .c4-sidenav,.c4-sidebar.affix .c4-sidenav{margin-top:0;margin-bottom:0}}@media(min-width:1200px){.c4-sidebar.affix-bottom,.c4-sidebar.affix{width:263px}}div[role=main]>article,div[role=main]>article>section{padding-top:40px}h1[id]{padding-top:80px;margin-top:-45px} \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..83afd12 --- /dev/null +++ b/Gemfile @@ -0,0 +1,36 @@ +source "https://rubygems.org" + +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 3.8.6" + +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.0" + +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins + +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.6" +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform? + + +gem "jekyll-sitemap", "~> 1.3" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..1b14a6d --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,85 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.6.0) + public_suffix (>= 2.0.2, < 4.0) + colorator (1.1.0) + concurrent-ruby (1.1.5) + em-websocket (0.5.1) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + eventmachine (1.2.7) + ffi (1.11.1) + forwardable-extended (2.6.0) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.8.6) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (~> 1.14) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-feed (0.12.1) + jekyll (>= 3.7, < 5.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-seo-tag (2.6.1) + jekyll (>= 3.3, < 5.0) + jekyll-sitemap (1.3.1) + jekyll (>= 3.7, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (1.17.0) + liquid (4.0.3) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + mercenary (0.3.6) + minima (2.5.0) + jekyll (~> 3.5) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (3.1.1) + rb-fsevent (0.10.3) + rb-inotify (0.10.0) + ffi (~> 1.0) + rouge (3.6.0) + ruby_dep (1.5.0) + safe_yaml (1.0.5) + sass (3.7.4) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + thread_safe (0.3.6) + tzinfo (1.2.5) + thread_safe (~> 0.1) + tzinfo-data (1.2019.2) + tzinfo (>= 1.0.0) + wdm (0.1.1) + +PLATFORMS + ruby + +DEPENDENCIES + jekyll (~> 3.8.6) + jekyll-feed (~> 0.6) + jekyll-sitemap (~> 1.3) + minima (~> 2.0) + tzinfo (~> 1.2) + tzinfo-data + wdm (~> 0.1.0) + +BUNDLED WITH + 1.17.2 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..4108795 --- /dev/null +++ b/_config.yml @@ -0,0 +1,43 @@ +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. + +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. +title: Community for F# +email: info@c4fsharp.net +description: >- # this means to ignore newlines until "baseurl:" + The Community for F# provides live streaming and recordings of user group presentations, + as well as content for you to use in presenting to your own local user groups. +baseurl: "" # the subpath of your site, e.g. /blog +url: "https://c4fsharp.net" # the base hostname & protocol for your site, e.g. http://example.com +twitter_username: c4fsharp +github_username: c4fsharp + +# Build settings +markdown: kramdown +#theme: minima +plugins: + - jekyll-feed + - jekyll-sitemap + +# Exclude from processing. +# The following items will not be processed, by default. Create a custom list +# to override the default setting. +# exclude: +# - Gemfile +# - Gemfile.lock +# - node_modules +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..04dafcd --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,8 @@ + diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..08c82b5 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,12 @@ +
+
+
+

Community for F#

+
+

+ The Community for F# provides resources to connect you to the F# community. This includes information about existing events and user groups, + live streaming and recordings of user group presentations, as well as content for you to use in presenting to your own local user groups. +

+ +
+
diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 0000000..2373fcf --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,54 @@ + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..f3e8f5f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,56 @@ + + + + + + {{ page.title }} | {{ site.title }} + + + + + + + + + + + + + + + + + Skip to main content + + {% include navigation.html %} + + {% include header.html %} + +
+
+
+ {{ content }} +
+
+ + {% include footer.html %} + +
+ + + + + + + diff --git a/apple-touch-icon-114x114.png b/apple-touch-icon-114x114.png deleted file mode 100644 index 2535f91..0000000 Binary files a/apple-touch-icon-114x114.png and /dev/null differ diff --git a/apple-touch-icon-120x120.png b/apple-touch-icon-120x120.png deleted file mode 100644 index 00160d0..0000000 Binary files a/apple-touch-icon-120x120.png and /dev/null differ diff --git a/apple-touch-icon-144x144.png b/apple-touch-icon-144x144.png deleted file mode 100644 index 56f3dba..0000000 Binary files a/apple-touch-icon-144x144.png and /dev/null differ diff --git a/apple-touch-icon-152x152.png b/apple-touch-icon-152x152.png deleted file mode 100644 index 3a4500e..0000000 Binary files a/apple-touch-icon-152x152.png and /dev/null differ diff --git a/apple-touch-icon-57x57.png b/apple-touch-icon-57x57.png deleted file mode 100644 index e7af7c2..0000000 Binary files a/apple-touch-icon-57x57.png and /dev/null differ diff --git a/apple-touch-icon-60x60.png b/apple-touch-icon-60x60.png deleted file mode 100644 index ebeca25..0000000 Binary files a/apple-touch-icon-60x60.png and /dev/null differ diff --git a/apple-touch-icon-72x72.png b/apple-touch-icon-72x72.png deleted file mode 100644 index 2b592bb..0000000 Binary files a/apple-touch-icon-72x72.png and /dev/null differ diff --git a/apple-touch-icon-76x76.png b/apple-touch-icon-76x76.png deleted file mode 100644 index c3ec8cf..0000000 Binary files a/apple-touch-icon-76x76.png and /dev/null differ diff --git a/apple-touch-icon-precomposed.png b/apple-touch-icon-precomposed.png deleted file mode 100644 index e9e355c..0000000 Binary files a/apple-touch-icon-precomposed.png and /dev/null differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png old mode 100644 new mode 100755 index 3a4500e..fe733a8 Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ diff --git a/browserconfig.xml b/browserconfig.xml old mode 100644 new mode 100755 index fe44cae..5beccef --- a/browserconfig.xml +++ b/browserconfig.xml @@ -1,12 +1,9 @@ - - - - - - - #da532c - - - + + + + #FFFFFF + + + \ No newline at end of file diff --git a/favicon-160x160.png b/favicon-160x160.png deleted file mode 100644 index cde9b7e..0000000 Binary files a/favicon-160x160.png and /dev/null differ diff --git a/favicon-16x16.png b/favicon-16x16.png deleted file mode 100644 index fe57e9d..0000000 Binary files a/favicon-16x16.png and /dev/null differ diff --git a/favicon-192x192.png b/favicon-192x192.png new file mode 100755 index 0000000..e6f6ec5 Binary files /dev/null and b/favicon-192x192.png differ diff --git a/favicon-196x196.png b/favicon-196x196.png deleted file mode 100644 index 3bbc4a2..0000000 Binary files a/favicon-196x196.png and /dev/null differ diff --git a/favicon-32x32.png b/favicon-32x32.png deleted file mode 100644 index dad68bf..0000000 Binary files a/favicon-32x32.png and /dev/null differ diff --git a/favicon-96x96.png b/favicon-96x96.png deleted file mode 100644 index fdda001..0000000 Binary files a/favicon-96x96.png and /dev/null differ diff --git a/favicon.ico b/favicon.ico old mode 100644 new mode 100755 index 69748b7..62a9e94 Binary files a/favicon.ico and b/favicon.ico differ diff --git a/index.html b/index.html index 082177d..9076493 100644 --- a/index.html +++ b/index.html @@ -1,351 +1,220 @@ - - - - - - Community for F# - - - - - - - - - - - - - - - - - - - - - - - - - Skip to main content - -