diff --git a/Gemfile.lock b/Gemfile.lock
index d3195d5..456f729 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,20 +1,20 @@
GEM
remote: https://rubygems.org/
specs:
- addressable (2.8.1)
+ addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
colorator (1.1.0)
- concurrent-ruby (1.1.10)
+ concurrent-ruby (1.2.2)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
- ffi (1.15.5)
+ ffi (1.16.3)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
- i18n (1.12.0)
+ i18n (1.14.1)
concurrent-ruby (~> 1.0)
- jekyll (4.3.2)
+ jekyll (4.3.3)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
@@ -56,19 +56,19 @@ GEM
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
- public_suffix (5.0.1)
+ public_suffix (5.0.4)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
- rexml (3.2.5)
- rouge (4.0.1)
+ rexml (3.2.6)
+ rouge (4.2.0)
rubyzip (2.3.2)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
- unicode-display_width (2.4.2)
+ unicode-display_width (2.5.0)
webrick (1.8.1)
PLATFORMS
diff --git a/_config.yml b/_config.yml
index ff92693..af94498 100644
--- a/_config.yml
+++ b/_config.yml
@@ -8,6 +8,8 @@ description: >-
url: "https://sebsscholarship.org"
+repo: sebs-scholarship/Website
+
baseurl: ""
plugins:
@@ -33,7 +35,7 @@ defaults:
values:
sitemap: false
-remote_theme: sebs-scholarship/Theme@2023-04-05-1
+remote_theme: sebs-scholarship/Theme@2024-01-04-1
exclude:
- .github
diff --git a/_includes/common_js.html b/_includes/common_js.html
index 6a53d48..9f718e2 100644
--- a/_includes/common_js.html
+++ b/_includes/common_js.html
@@ -10,6 +10,7 @@
}
},
"theme": "edgeless",
+ "position": "bottom-left",
"content": {
"href": "https://sebsscholarship.org/privacy_policy.html"
}
diff --git a/_includes/contact.html b/_includes/contact.html
index ea9a042..296266b 100644
--- a/_includes/contact.html
+++ b/_includes/contact.html
@@ -3,44 +3,22 @@
Get In Touch
-
If you have any questions, please use the form below to contact us. Someone should get back to you in a few business days.
+
If you have any questions, you can reach us using the information below. Someone will get back to you in a few business days.
-
-
-
+
diff --git a/_includes/footer.html b/_includes/footer.html
deleted file mode 100644
index eb28eb4..0000000
--- a/_includes/footer.html
+++ /dev/null
@@ -1,65 +0,0 @@
-{% assign prefix = "/" %}
-{% unless page.title %}
-{% assign prefix = "" %}
-{% endunless %}
-
diff --git a/_includes/footer_links.html b/_includes/footer_links.html
new file mode 100644
index 0000000..65754d5
--- /dev/null
+++ b/_includes/footer_links.html
@@ -0,0 +1,14 @@
+
\ No newline at end of file
diff --git a/_includes/home_js.html b/_includes/home_js.html
index ae8b6b7..430821f 100644
--- a/_includes/home_js.html
+++ b/_includes/home_js.html
@@ -200,40 +200,4 @@
console.log("Are you a SEBS graduate interested in helping work on our website? Please visit the link below to fill out our interest form!");
console.log("https://forms.gle/r7PGCqciGPRyn2PA6");
});
-
-
- function contactSubmit() {
- grecaptcha.execute();
- }
-
- function contact(token) {
- const name = document.getElementById("name").value;
- const email = document.getElementById("email").value;
- const message = document.getElementById("message").value;
- document.getElementById("status").innerHTML = "";
- const send = document.getElementById("send");
- send.value = "Sending...";
- send.disabled = true;
-
- const xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function () {
- if (this.readyState === 4) {
- if (this.status === 200) {
- document.getElementById("name").value = "";
- document.getElementById("email").value = "";
- document.getElementById("message").value = "";
- document.getElementById("status").innerHTML = "Message has been sent!";
- } else {
- document.getElementById("status").innerHTML = "There was an error sending your message. Please try again and email
help@sebsscholarship.org directly if the issue persists.";
- }
-
- const send = document.getElementById("send");
- send.value = "Send Message";
- send.disabled = false;
- }
- };
- xhttp.open("POST", "/email/contact.php", true);
- xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
- xhttp.send("name=" + name + "&email=" + email + "&message=" + message + "&token=" + token);
- }
\ No newline at end of file
diff --git a/_layouts/default.html b/_layouts/default.html
index cdf5995..74d1ecd 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -10,7 +10,7 @@
{% include_cached loader.html %}
{% include navbar.html %}
{{ content }}
- {% include footer.html %}
+ {% include_cached footer.html prefix="/" %}
{% include_cached common_js.html %}