diff --git a/_config.yml b/_config.yml
index fcc678d..e3eb165 100644
--- a/_config.yml
+++ b/_config.yml
@@ -4,6 +4,9 @@ email: your-email@domain.com
url: https://example.github.io
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
+# Contact form: uncomment the line below if you want to stick with the default PHP contact form
+contact: static
+
# Color settings (hex-codes without the leading hash-tag)
color:
primary: 18bc9c #80B3FF
diff --git a/_includes/contact_static.html b/_includes/contact_static.html
new file mode 100644
index 0000000..f8a5bd0
--- /dev/null
+++ b/_includes/contact_static.html
@@ -0,0 +1,51 @@
+
+
\ No newline at end of file
diff --git a/_includes/js.html b/_includes/js.html
index dfb30cf..7d37df5 100644
--- a/_includes/js.html
+++ b/_includes/js.html
@@ -11,7 +11,11 @@
-
+ {% if site.contact == "static" %}
+
+ {% else %}
+
+ {% endif %}
diff --git a/_layouts/default.html b/_layouts/default.html
index ca7041d..0482848 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -6,7 +6,13 @@
{% include header.html %}
{% include portfolio_grid.html %}
{% include about.html %}
+
+ {% if site.contact == "static" %}
+ {% include contact_static.html %}
+ {% else %}
{% include contact.html %}
+ {% endif %}
+
{% include footer.html %}
{% include modals.html %}
{% include js.html %}
diff --git a/js/contact_me_static.js b/js/contact_me_static.js
new file mode 100644
index 0000000..b84b6b5
--- /dev/null
+++ b/js/contact_me_static.js
@@ -0,0 +1,23 @@
+$(function() {
+
+ $("input,textarea").jqBootstrapValidation({
+ preventSubmit: true,
+ submitError: function($form, event, errors) {
+ // additional error messages or events
+ },
+
+ filter: function() {
+ return $(this).is(":visible");
+ },
+ });
+
+ $("a[data-toggle=\"tab\"]").click(function(e) {
+ e.preventDefault();
+ $(this).tab("show");
+ });
+});
+
+/*When clicking on Full hide fail/success boxes */
+$('#name').focus(function() {
+ $('#success').html('');
+});