From 3f5ac25be7d5be877857ef98201405838f522404 Mon Sep 17 00:00:00 2001 From: Cale McCollough Date: Thu, 5 Dec 2019 11:20:35 -0800 Subject: [PATCH] Change.Revert.To Jekyll site. #15 --- mcc/package-lock.json | 8 +- mcc/public/manifest.json | 3 +- mcc/src/App.js | 2 +- mcc/src/components/header.js | 2 +- mcc/src/components/product.js | 2 +- mcc/src/screens/home.js | 5 +- mcc/src/website/index.html | 56 ++ .../p/astartup.toolkit/astartup.toolkit.js | 0 package-lock.json | 3 + readme.md | 6 +- website/.buildconfig | 10 + website/.gitignore | 6 + website/404.md | 7 + website/FUNDING.yml | 9 + website/Gemfile | 7 + website/_config.yml | 163 ++++ website/_includes/ads.html | 8 + website/_includes/algolia_search.html | 61 ++ website/_includes/author_skills.html | 2 + website/_includes/contact_form.html | 17 + website/_includes/estuary_categories.html | 8 + website/_includes/estuary_post_article.html | 27 + .../_includes/estuary_post_breadcrumb.html | 11 + website/_includes/estuary_post_comments.html | 17 + website/_includes/estuary_sidebar.html | 16 + website/_includes/estuary_tags.html | 8 + website/_includes/footer.html | 3 + website/_includes/github_follow_button.html | 3 + website/_includes/github_star_button.html | 3 + website/_includes/head.html | 97 ++ website/_includes/header.html | 55 ++ website/_includes/product.html | 8 + website/_includes/product_definition.html | 6 + website/_includes/project-widget.html | 0 website/_includes/qr-login.html | 10 + website/_includes/repo.html | 21 + website/_includes/sidebar.html | 19 + website/_includes/stream.html | 18 + website/_includes/twitter_follow_button.html | 3 + website/_layouts/careers.html | 8 + website/_layouts/compress.html | 39 + website/_layouts/contact.html | 8 + website/_layouts/default.html | 24 + website/_layouts/discover.html | 105 +++ website/_layouts/estuary.html | 59 ++ website/_layouts/home.html | 17 + website/_layouts/page.html | 9 + website/_layouts/post.html | 22 + website/_layouts/product.html | 12 + website/_layouts/resources.html | 7 + website/_layouts/search.html | 21 + website/_posts/2019-10-05-hello-world.md | 11 + website/_products/astartup-cookbook.md | 12 + website/_products/greentech-cookbook.md | 12 + website/_products/kabuki.press.cookbook.md | 12 + website/_sass/astartup.scss | 888 ++++++++++++++++++ website/_seams/00.core.inl | 33 + website/_seams/_config.h | 1 + website/_seams/_debug.inl | 1 + website/_seams/_release.inl | 1 + website/_seams/_undef.inl | 1 + website/_seams/main.cpp | 5 + website/_seams/readme.md | 9 + website/_seams/release.inl | 32 + website/careers.md | 6 + website/categories/all.md | 20 + website/categories/guides.md | 11 + website/contact.md | 6 + website/discover.md | 6 + website/docs/bug_report_template.md | 13 + website/docs/code_of_conduct.md | 7 + website/docs/contributing.md | 42 + website/docs/feature_request_template.md | 13 + website/docs/issue_template.md | 13 + website/docs/pull_request_template.md | 3 + website/docs/readme.md | 13 + website/docs/roadmap.md | 3 + website/estuary.html | 15 + website/estuary/index.html | 7 + website/index.html | 3 + website/install/.gitignore | 8 + website/install/CODE_OF_CONDUCT.md | 74 ++ website/install/Gemfile | 4 + website/install/README.md | 39 + website/install/Rakefile | 2 + website/install/bin/console | 14 + website/install/bin/setup | 8 + website/install/install.gemspec | 40 + website/install/lib/install.rb | 6 + website/install/lib/install/version.rb | 3 + website/p/astartup.cookbook.png | Bin 0 -> 10947 bytes website/p/astartup.livestream.logo.png | Bin 0 -> 3633 bytes website/p/astartup.png | Bin 0 -> 10947 bytes website/p/favicon.ico | Bin 0 -> 7707 bytes website/p/greentech.cookbook.png | Bin 0 -> 38431 bytes website/p/kabuki.press.cookbook.png | Bin 0 -> 84692 bytes website/p/kabuki.press.png | Bin 0 -> 159835 bytes website/p/kabuki.toolkit.png | Bin 0 -> 84692 bytes website/p/kabuki.toolkit.tek.png | Bin 0 -> 99325 bytes website/p/qr.astartup.net.png | Bin 0 -> 3142 bytes website/p/script2.png | Bin 0 -> 8429 bytes website/readme.md | 9 + website/resources.md | 6 + website/screenshot.png | Bin 0 -> 230863 bytes website/screenshot2.png | Bin 0 -> 138655 bytes website/search.md | 6 + website/styleguide.md | 203 ++++ website/tags/all.md | 28 + website/tags/jekyll.md | 13 + website/theme/app-icon-android.png | Bin 0 -> 1206 bytes website/theme/app-icon-ios.png | Bin 0 -> 913 bytes website/theme/app-icon-windows.png | Bin 0 -> 862 bytes website/theme/custom-style.css | 383 ++++++++ website/theme/logo.png | Bin 0 -> 2973 bytes website/theme/main.scss | 6 + 115 files changed, 3078 insertions(+), 14 deletions(-) create mode 100644 mcc/src/website/index.html create mode 100644 mcc/src/website/p/astartup.toolkit/astartup.toolkit.js create mode 100644 package-lock.json create mode 100644 website/.buildconfig create mode 100644 website/.gitignore create mode 100644 website/404.md create mode 100644 website/FUNDING.yml create mode 100644 website/Gemfile create mode 100644 website/_config.yml create mode 100644 website/_includes/ads.html create mode 100644 website/_includes/algolia_search.html create mode 100644 website/_includes/author_skills.html create mode 100644 website/_includes/contact_form.html create mode 100644 website/_includes/estuary_categories.html create mode 100644 website/_includes/estuary_post_article.html create mode 100644 website/_includes/estuary_post_breadcrumb.html create mode 100644 website/_includes/estuary_post_comments.html create mode 100644 website/_includes/estuary_sidebar.html create mode 100644 website/_includes/estuary_tags.html create mode 100644 website/_includes/footer.html create mode 100644 website/_includes/github_follow_button.html create mode 100644 website/_includes/github_star_button.html create mode 100644 website/_includes/head.html create mode 100644 website/_includes/header.html create mode 100644 website/_includes/product.html create mode 100644 website/_includes/product_definition.html create mode 100644 website/_includes/project-widget.html create mode 100644 website/_includes/qr-login.html create mode 100644 website/_includes/repo.html create mode 100644 website/_includes/sidebar.html create mode 100644 website/_includes/stream.html create mode 100644 website/_includes/twitter_follow_button.html create mode 100644 website/_layouts/careers.html create mode 100644 website/_layouts/compress.html create mode 100644 website/_layouts/contact.html create mode 100644 website/_layouts/default.html create mode 100644 website/_layouts/discover.html create mode 100644 website/_layouts/estuary.html create mode 100644 website/_layouts/home.html create mode 100644 website/_layouts/page.html create mode 100644 website/_layouts/post.html create mode 100644 website/_layouts/product.html create mode 100644 website/_layouts/resources.html create mode 100644 website/_layouts/search.html create mode 100644 website/_posts/2019-10-05-hello-world.md create mode 100644 website/_products/astartup-cookbook.md create mode 100644 website/_products/greentech-cookbook.md create mode 100644 website/_products/kabuki.press.cookbook.md create mode 100644 website/_sass/astartup.scss create mode 100644 website/_seams/00.core.inl create mode 100644 website/_seams/_config.h create mode 100644 website/_seams/_debug.inl create mode 100644 website/_seams/_release.inl create mode 100644 website/_seams/_undef.inl create mode 100644 website/_seams/main.cpp create mode 100644 website/_seams/readme.md create mode 100644 website/_seams/release.inl create mode 100644 website/careers.md create mode 100644 website/categories/all.md create mode 100644 website/categories/guides.md create mode 100644 website/contact.md create mode 100644 website/discover.md create mode 100644 website/docs/bug_report_template.md create mode 100644 website/docs/code_of_conduct.md create mode 100644 website/docs/contributing.md create mode 100644 website/docs/feature_request_template.md create mode 100644 website/docs/issue_template.md create mode 100644 website/docs/pull_request_template.md create mode 100644 website/docs/readme.md create mode 100644 website/docs/roadmap.md create mode 100644 website/estuary.html create mode 100644 website/estuary/index.html create mode 100644 website/index.html create mode 100644 website/install/.gitignore create mode 100644 website/install/CODE_OF_CONDUCT.md create mode 100644 website/install/Gemfile create mode 100644 website/install/README.md create mode 100644 website/install/Rakefile create mode 100644 website/install/bin/console create mode 100644 website/install/bin/setup create mode 100644 website/install/install.gemspec create mode 100644 website/install/lib/install.rb create mode 100644 website/install/lib/install/version.rb create mode 100644 website/p/astartup.cookbook.png create mode 100644 website/p/astartup.livestream.logo.png create mode 100644 website/p/astartup.png create mode 100644 website/p/favicon.ico create mode 100644 website/p/greentech.cookbook.png create mode 100644 website/p/kabuki.press.cookbook.png create mode 100644 website/p/kabuki.press.png create mode 100644 website/p/kabuki.toolkit.png create mode 100644 website/p/kabuki.toolkit.tek.png create mode 100644 website/p/qr.astartup.net.png create mode 100644 website/p/script2.png create mode 100644 website/readme.md create mode 100644 website/resources.md create mode 100644 website/screenshot.png create mode 100644 website/screenshot2.png create mode 100644 website/search.md create mode 100644 website/styleguide.md create mode 100644 website/tags/all.md create mode 100644 website/tags/jekyll.md create mode 100644 website/theme/app-icon-android.png create mode 100644 website/theme/app-icon-ios.png create mode 100644 website/theme/app-icon-windows.png create mode 100644 website/theme/custom-style.css create mode 100644 website/theme/logo.png create mode 100644 website/theme/main.scss diff --git a/mcc/package-lock.json b/mcc/package-lock.json index 3e4f47c..a0c8767 100644 --- a/mcc/package-lock.json +++ b/mcc/package-lock.json @@ -1,5 +1,5 @@ { - "name": "astartup.chorme", + "name": "astartup.chrome", "version": "0.1.0", "lockfileVersion": 1, "requires": true, @@ -5810,9 +5810,9 @@ "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" }, "handlebars": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.4.3.tgz", - "integrity": "sha512-B0W4A2U1ww3q7VVthTKfh+epHx+q4mCt6iK+zEAzbMBpWQAwxCeKxEGpj/1oQTpzPXDNSOG7hmG14TsISH50yw==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.5.3.tgz", + "integrity": "sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==", "requires": { "neo-async": "^2.6.0", "optimist": "^0.6.1", diff --git a/mcc/public/manifest.json b/mcc/public/manifest.json index afc36cf..ebeb963 100644 --- a/mcc/public/manifest.json +++ b/mcc/public/manifest.json @@ -1,8 +1,7 @@ { "manifest_version": 2, - "short_name": "Astartup", "name": "Astartup", - "description": "Mission Control Center browser extension for the A* Startup Network and Astartup Live-stream.", + "description": "Astartup Mission Control Center browser extension.", "version": "0.0.1", "background": { "scripts": [ diff --git a/mcc/src/App.js b/mcc/src/App.js index 016b7d1..cdf927e 100644 --- a/mcc/src/App.js +++ b/mcc/src/App.js @@ -1,5 +1,5 @@ import React, {Component} from 'react'; -import logo from './logo.svg'; +import Logo from './logo.svg'; import './App.css'; import Header from "./components/header"; diff --git a/mcc/src/components/header.js b/mcc/src/components/header.js index 34dd0cd..c4712dd 100644 --- a/mcc/src/components/header.js +++ b/mcc/src/components/header.js @@ -18,7 +18,7 @@ function ComponentHeader() {