From a8c904b62669b18705bfb72cc72aac8743bb42dc Mon Sep 17 00:00:00 2001 From: ehildrich Date: Fri, 5 May 2023 17:38:00 -0500 Subject: [PATCH 01/47] updated events page, about page, and social medias --- CHANGELOG.md | 5 +++ Gemfile.lock | 54 ++++++++++++------------ _config.yml | 3 +- _includes/footer.html | 1 + _includes/navigation.html | 4 +- _pages/about.markdown | 20 +++++---- _pages/events.markdown | 12 +++--- _site/2018/04/Bitcoin.html | 9 ++-- _site/2018/04/Jordan-Butler's-Wrist.html | 9 ++-- _site/2018/09/Resume-Building.html | 9 ++-- _site/2018/10/Classes-for-Spring.html | 9 ++-- _site/2018/10/Python-Concurrency.html | 11 ++--- _site/2018/11/Intro-to-git.html | 9 ++-- _site/2018/11/Robocode-Info.html | 9 ++-- _site/2019/01/Spring-Welcome.html | 9 ++-- _site/2019/02/Linux-Install-Party.html | 9 ++-- _site/Gemfile.lock | 54 ++++++++++++------------ _site/about/index.html | 25 ++++++----- _site/codecomp/index.html | 9 ++-- _site/events/index.html | 22 +++++----- _site/feed.xml | 6 +-- _site/hacktruman/index.html | 9 ++-- _site/index.html | 13 +++--- _site/meetings/index.html | 9 ++-- _site/robocode/index.html | 9 ++-- _site/yyyy-mm-dd-title.html | 9 ++-- index.markdown | 4 +- 27 files changed, 190 insertions(+), 161 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bd3b7a..120822b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Change Log +## [0.2.0] - 2023-5-1 +- **Updated** about page +- Unused pages no longer appear in bar + ## [0.1.1] - 2015-12-03 - **Added** themeing styles ## [0.1.0] - 2015-12-01 - **Added** base styles and jekyll files + diff --git a/Gemfile.lock b/Gemfile.lock index 4cb59a5..49918c9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,19 +1,20 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.6.0) - public_suffix (>= 2.0.2, < 4.0) + addressable (2.8.4) + public_suffix (>= 2.0.2, < 6.0) colorator (1.1.0) - concurrent-ruby (1.1.5) - em-websocket (0.5.1) + concurrent-ruby (1.2.2) + em-websocket (0.5.3) eventmachine (>= 0.12.9) - http_parser.rb (~> 0.6.0) + http_parser.rb (~> 0) eventmachine (1.2.7) eventmachine (1.2.7-x64-mingw32) - ffi (1.10.0) - ffi (1.10.0-x64-mingw32) + ffi (1.15.5) + ffi (1.15.5-x64-mingw32) + ffi (1.15.5-x64-unknown) forwardable-extended (2.6.0) - http_parser.rb (0.6.0) + http_parser.rb (0.8.0) i18n (0.9.5) concurrent-ruby (~> 1.0) jekyll (3.7.4) @@ -29,48 +30,47 @@ GEM pathutil (~> 0.9) rouge (>= 1.7, < 4) safe_yaml (~> 1.0) - jekyll-feed (0.12.1) + jekyll-feed (0.17.0) jekyll (>= 3.7, < 5.0) jekyll-sass-converter (1.5.2) sass (~> 3.4) - jekyll-seo-tag (2.6.0) - jekyll (~> 3.3) + jekyll-seo-tag (2.6.1) + jekyll (>= 3.3, < 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) + liquid (4.0.4) + listen (3.8.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.3.6) - minima (2.5.0) - jekyll (~> 3.5) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (3.0.3) - rb-fsevent (0.10.3) - rb-inotify (0.10.0) + public_suffix (5.0.1) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) ffi (~> 1.0) - rouge (3.3.0) - ruby_dep (1.5.0) + rouge (3.30.0) safe_yaml (1.0.5) - sass (3.7.3) + 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) - tzinfo (2.0.0) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) - tzinfo-data (1.2019.1) + tzinfo-data (1.2023.3) tzinfo (>= 1.0.0) wdm (0.1.1) PLATFORMS ruby x64-mingw32 + x64-unknown DEPENDENCIES jekyll (~> 3.7.4) @@ -80,4 +80,4 @@ DEPENDENCIES wdm (~> 0.1.0) BUNDLED WITH - 1.17.3 + 2.4.12 diff --git a/_config.yml b/_config.yml index dd65ec7..cd2fae9 100644 --- a/_config.yml +++ b/_config.yml @@ -20,9 +20,10 @@ description: "The website for Truman State's ACM chapter!" url: http://acm.truman.edu # the base hostname & protocol for your site # Social -discord: 2J4zUZ5 +discord: bDzuEGuy4G githubUsername: TrumanStateACM facebookGroup: trumanacm +instagramUsername: acm_truman dribbbleUsername: codepenUsername: diff --git a/_includes/footer.html b/_includes/footer.html index 820a7d8..d1290a9 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -3,6 +3,7 @@

© {{ site.title }} {{ site.time | date: '%Y' }}

{% if site.discord %}Discord{% endif %} + {% if site.instagramUsername %}Instagram{% endif %} {% if site.githubUsername %}Github{% endif %} {% if site.facebookGroup %}Facebook{% endif %}

diff --git a/_includes/navigation.html b/_includes/navigation.html index 0250812..9087727 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -2,10 +2,10 @@
Home Events - HackTruman + About - Meeting Minutes +
diff --git a/_pages/about.markdown b/_pages/about.markdown index 34fb46e..f1815ff 100644 --- a/_pages/about.markdown +++ b/_pages/about.markdown @@ -6,30 +6,34 @@ permalink: /about/ # Hello, World! -This is the website for Truman State University's ACM chapter. You can join or [mailing list][ML], visit our [Discord channel][DA], or check out our [Facebook page][FB]. Thank you for checking out our Website. +This is the website for Truman State University's ACM chapter. You can visit our [Discord channel][DA], or check out our [Instagram][IN]. We also have a [mailing list][ML], as well as a [Facebook group][FB]. Finally, you can view this website's code, as well as our constitution, at our [Github][GH]. Thank you for checking out our website! + +
# Executives -President - Abanoub Ghaly +President - Justin Caringal -Vice President - Thu Vo +Vice President - Owen Murphy -Treasurer - Ebenezer Osei +Treasurer - Andy Bernatow -Secretary - Karl Ramberg +Secretary - Sean Moen -Webmaster - Dat Tran +Recruitment Chair - Aidan Dunne -Advisor - Dr. Donald Bindner, dbindner@truman.edu +Webmaster - Dottie Hildrich
If you notice any issues with the website please email acm@truman.edu. Thank you for checking out our page. -[DA]: https://discordapp.com/invite/2J4zUZ5 +[DA]: https://discordapp.com/invite/bDzuEGuy4G [FB]: https://www.facebook.com/groups/trumanacm [ML]: https://groups.google.com/forum/#!forum/truman-acm-mailing +[IN]: https://www.instagram.com/acm_truman/ +[GH]: https://github.com/TrumanStateACM \ No newline at end of file diff --git a/_pages/events.markdown b/_pages/events.markdown index 7eea020..d62ee84 100644 --- a/_pages/events.markdown +++ b/_pages/events.markdown @@ -4,20 +4,18 @@ title: Events permalink: /events/ --- -# Here we will post upcoming events +Here we will post upcoming events and the topic of upcoming meetings. -### [Hackathon 2019][HT] -- Date: 12 April - 14 April - - - - +### Upcoming Events +Coming **Fall 2023!** +### Upcoming Meetings +Coming **Fall 2023!** [HT]: {{site.baseurl}}/hacktruman/ diff --git a/_site/2018/04/Bitcoin.html b/_site/2018/04/Bitcoin.html index 347fb10..e84ca07 100644 --- a/_site/2018/04/Bitcoin.html +++ b/_site/2018/04/Bitcoin.html @@ -28,11 +28,11 @@
Home Events - HackTruman + About - Meeting Minutes +
@@ -154,9 +154,10 @@

Topic