From e4ae80d38a6c5329756979b0bf764a9bd0c81dbe Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Wed, 8 Jul 2020 16:12:12 -0500 Subject: [PATCH 01/22] Create README.md --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..514defa --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# GeekWeb From aa45a410c9ef833f93b749a26b7bb3e886e97bc2 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 9 Jul 2020 22:59:15 -0500 Subject: [PATCH 02/22] comentarios agregue comentarios para explicar --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 2589153..a0e6702 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - + @@ -19,11 +19,11 @@ - + - + From 13769de4bcd7095e3a566155fb1ccc699f7fc15c Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 21:18:25 -0500 Subject: [PATCH 03/22] Cambios Eliminar php --- index.html | 24 +++++++++++++++++------- js/redirection.js | 3 +++ 2 files changed, 20 insertions(+), 7 deletions(-) create mode 100644 js/redirection.js diff --git a/index.html b/index.html index a0e6702..990e5ac 100644 --- a/index.html +++ b/index.html @@ -370,25 +370,35 @@

Contact

-
+
- + +

- +

+
- -

+ + + + +
- +

@@ -434,7 +444,7 @@

Contact

- + diff --git a/js/redirection.js b/js/redirection.js new file mode 100644 index 0000000..35fc583 --- /dev/null +++ b/js/redirection.js @@ -0,0 +1,3 @@ +function redireccionar() { + setTimeout("location.href=''", 2000); + } \ No newline at end of file From cc64e7aa74b6d85deaf6bcf4b670892235c10ce2 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 21:23:13 -0500 Subject: [PATCH 04/22] Eliminacion Eliminar js contact me y contacme php --- js/contact_me.js | 75 --------------------------------------------- mail/contact_me.php | 26 ---------------- 2 files changed, 101 deletions(-) delete mode 100644 js/contact_me.js delete mode 100644 mail/contact_me.php diff --git a/js/contact_me.js b/js/contact_me.js deleted file mode 100644 index 6e91590..0000000 --- a/js/contact_me.js +++ /dev/null @@ -1,75 +0,0 @@ -$(function() { - - $("#contactForm input,#contactForm textarea").jqBootstrapValidation({ - preventSubmit: true, - submitError: function($form, event, errors) { - // additional error messages or events - }, - submitSuccess: function($form, event) { - event.preventDefault(); // prevent default submit behaviour - // get values from FORM - var name = $("input#name").val(); - var email = $("input#email").val(); - var phone = $("input#phone").val(); - var message = $("textarea#message").val(); - var firstName = name; // For Success/Failure Message - // Check for white space in name for Success/Fail message - if (firstName.indexOf(' ') >= 0) { - firstName = name.split(' ').slice(0, -1).join(' '); - } - $this = $("#sendMessageButton"); - $this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages - $.ajax({ - url: "././mail/contact_me.php", - type: "POST", - data: { - name: name, - phone: phone, - email: email, - message: message - }, - cache: false, - success: function() { - // Success message - $('#success').html("
"); - $('#success > .alert-success').html(""); - $('#success > .alert-success') - .append("Your message has been sent. "); - $('#success > .alert-success') - .append('
'); - //clear all fields - $('#contactForm').trigger("reset"); - }, - error: function() { - // Fail message - $('#success').html("
"); - $('#success > .alert-danger').html(""); - $('#success > .alert-danger').append($("").text("Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!")); - $('#success > .alert-danger').append('
'); - //clear all fields - $('#contactForm').trigger("reset"); - }, - complete: function() { - setTimeout(function() { - $this.prop("disabled", false); // Re-enable submit button when AJAX call is complete - }, 1000); - } - }); - }, - 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(''); -}); diff --git a/mail/contact_me.php b/mail/contact_me.php deleted file mode 100644 index b8dd9eb..0000000 --- a/mail/contact_me.php +++ /dev/null @@ -1,26 +0,0 @@ - \ No newline at end of file From db467898b17f72ed2c7d17f6ff0f8f05590e4004 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 21:46:09 -0500 Subject: [PATCH 05/22] Correo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 990e5ac..fe6f742 100644 --- a/index.html +++ b/index.html @@ -370,7 +370,7 @@

Contact

- +
From 82e2fa44a0b6039241ff50dd1c866a6b143c8a86 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 21:52:32 -0500 Subject: [PATCH 06/22] Encrypt Encriptar el correo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index fe6f742..d85a519 100644 --- a/index.html +++ b/index.html @@ -370,7 +370,7 @@

Contact

- +
From 30f223b2b11640117c7fd3856524ebf1cf4c2300 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 21:59:45 -0500 Subject: [PATCH 07/22] Redirection --- index.html | 1 + js/redirection.js | 2 +- view/thanks.html | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 view/thanks.html diff --git a/index.html b/index.html index d85a519..f0b2814 100644 --- a/index.html +++ b/index.html @@ -374,6 +374,7 @@

Contact

+

diff --git a/js/redirection.js b/js/redirection.js index 35fc583..d09d6fd 100644 --- a/js/redirection.js +++ b/js/redirection.js @@ -1,3 +1,3 @@ function redireccionar() { - setTimeout("location.href=''", 2000); + setTimeout("location.href='https://ryu-ed.github.io/GeekWeb/'", 2000); } \ No newline at end of file diff --git a/view/thanks.html b/view/thanks.html new file mode 100644 index 0000000..9def741 --- /dev/null +++ b/view/thanks.html @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file From 57250812188cb2775003d7b75d3cfe7e6e5c94e2 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 22:00:57 -0500 Subject: [PATCH 08/22] url --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f0b2814..6b0f9cb 100644 --- a/index.html +++ b/index.html @@ -375,7 +375,7 @@

Contact

- +

From 767dbbb118ed99e6880443f2db24fde9d7b7e815 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 22:12:09 -0500 Subject: [PATCH 09/22] update --- view/thanks.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/view/thanks.html b/view/thanks.html index 9def741..1ec5790 100644 --- a/view/thanks.html +++ b/view/thanks.html @@ -4,11 +4,14 @@ - + Redirection - - - + + + + - + + + \ No newline at end of file From e7a5c9a5af727fd05a67b2d809ac61b7aadf51c7 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 22:16:55 -0500 Subject: [PATCH 10/22] update --- view/thanks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/thanks.html b/view/thanks.html index 1ec5790..ea074b9 100644 --- a/view/thanks.html +++ b/view/thanks.html @@ -11,7 +11,7 @@ - + \ No newline at end of file From 988f090b79e62a161224737ef39a4279700400e9 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 22:44:02 -0500 Subject: [PATCH 11/22] Update --- css/thanks.css | 11 +++++++++++ index.html | 6 ++++-- js/redirection.js | 2 +- view/thanks.html | 37 ++++++++++++++++++++++++++++++------- 4 files changed, 46 insertions(+), 10 deletions(-) create mode 100644 css/thanks.css diff --git a/css/thanks.css b/css/thanks.css new file mode 100644 index 0000000..92cd1dd --- /dev/null +++ b/css/thanks.css @@ -0,0 +1,11 @@ +html, +body, +.container-fluid { + height: 100%; + border: 3px solid #0bbbed; +} + +.thanks{ +margin-top: 40vh; + +} \ No newline at end of file diff --git a/index.html b/index.html index 6b0f9cb..a5d78cc 100644 --- a/index.html +++ b/index.html @@ -371,11 +371,13 @@

Contact

+ + +
- - +

diff --git a/js/redirection.js b/js/redirection.js index d09d6fd..c027b19 100644 --- a/js/redirection.js +++ b/js/redirection.js @@ -1,3 +1,3 @@ function redireccionar() { - setTimeout("location.href='https://ryu-ed.github.io/GeekWeb/'", 2000); + setTimeout("location.href='https://ryu-ed.github.io/GeekWeb/index.html'", 3000); } \ No newline at end of file diff --git a/view/thanks.html b/view/thanks.html index ea074b9..86bf974 100644 --- a/view/thanks.html +++ b/view/thanks.html @@ -1,17 +1,40 @@ - + + - - - - Redirection + + + + + + + + + + + + + +
+
+
+
+

Mensaje enviado

+

¡Gracias!

+
+
+
+
+ + + + + - - \ No newline at end of file From 6cbaf281ccda612b0308966255644a206834df5e Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:13:40 -0500 Subject: [PATCH 12/22] x --- index.html | 17 +++++++++-------- view/{thanks.html => gracias.html} | 0 2 files changed, 9 insertions(+), 8 deletions(-) rename view/{thanks.html => gracias.html} (100%) diff --git a/index.html b/index.html index a5d78cc..1869fda 100644 --- a/index.html +++ b/index.html @@ -370,19 +370,20 @@

Contact

- - - - + +
+ + + - +

- +

@@ -401,14 +402,14 @@

Contact

- +

- +
diff --git a/view/thanks.html b/view/gracias.html similarity index 100% rename from view/thanks.html rename to view/gracias.html From 81cda820ea6e61ba64c4eb0a9f89c19a397d1532 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:13:47 -0500 Subject: [PATCH 13/22] Update index.html --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 1869fda..1302a37 100644 --- a/index.html +++ b/index.html @@ -371,13 +371,13 @@

Contact

- + +
- - - + +

From 86d299bb3b2dd0bc95b28a009a014509efd1a044 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:24:19 -0500 Subject: [PATCH 14/22] update --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 1302a37..fe3a196 100644 --- a/index.html +++ b/index.html @@ -371,8 +371,8 @@

Contact

- - + +
@@ -386,7 +386,7 @@

Contact

- +
From c4c9a97366b56e6efcd370ae87c1e7be5ffcc22e Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:34:00 -0500 Subject: [PATCH 15/22] update --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index fe3a196..201ebc6 100644 --- a/index.html +++ b/index.html @@ -371,6 +371,7 @@

Contact

+
@@ -386,7 +387,7 @@

Contact

- +
From 0afeddff63090f97621f36d93988c60f51757b8d Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:39:57 -0500 Subject: [PATCH 16/22] Update --- css/thanks.css | 11 ----------- index.html | 2 +- js/redirection.js | 3 --- view/gracias.html | 40 ---------------------------------------- 4 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 css/thanks.css delete mode 100644 js/redirection.js delete mode 100644 view/gracias.html diff --git a/css/thanks.css b/css/thanks.css deleted file mode 100644 index 92cd1dd..0000000 --- a/css/thanks.css +++ /dev/null @@ -1,11 +0,0 @@ -html, -body, -.container-fluid { - height: 100%; - border: 3px solid #0bbbed; -} - -.thanks{ -margin-top: 40vh; - -} \ No newline at end of file diff --git a/index.html b/index.html index 201ebc6..d7c1eb4 100644 --- a/index.html +++ b/index.html @@ -372,7 +372,7 @@

Contact

- +
diff --git a/js/redirection.js b/js/redirection.js deleted file mode 100644 index c027b19..0000000 --- a/js/redirection.js +++ /dev/null @@ -1,3 +0,0 @@ -function redireccionar() { - setTimeout("location.href='https://ryu-ed.github.io/GeekWeb/index.html'", 3000); - } \ No newline at end of file diff --git a/view/gracias.html b/view/gracias.html deleted file mode 100644 index 86bf974..0000000 --- a/view/gracias.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-

Mensaje enviado

-

¡Gracias!

-
-
-
-
- - - - - - - - - \ No newline at end of file From 1d01674b14efb164b9b11e78b4c4765d342257df Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:44:12 -0500 Subject: [PATCH 17/22] Update index.html --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index d7c1eb4..db4ca59 100644 --- a/index.html +++ b/index.html @@ -391,7 +391,8 @@

Contact

- +

From e3dcd2eb5cc10ff7fd05813b99bc09bac0f9a058 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Thu, 6 Jan 2022 23:57:01 -0500 Subject: [PATCH 18/22] modify MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Eliminar option y añadir phone --- index.html | 16 ++++------------ style.css | 8 ++++---- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/index.html b/index.html index db4ca59..4823eb8 100644 --- a/index.html +++ b/index.html @@ -387,21 +387,13 @@

Contact

-
- - - - - + +

+
+
diff --git a/style.css b/style.css index a0f30f8..1a43b34 100644 --- a/style.css +++ b/style.css @@ -2047,13 +2047,13 @@ select.mobile-device { .contact_form .form-control { background-color: #333333; - margin-bottom: 30px; + margin-bottom: 35px; border: 1px solid #ebebeb; box-sizing: border-box; color: #bcbcbc; font-size: 16px; outline: 0 none; - padding: 10px 25px; + padding: 10px 30px; height: 55px; resize: none; box-shadow: none !important; @@ -2376,7 +2376,7 @@ select.mobile-device { color: #999 !important; margin: 0 !important; padding: 0 !important; - line-height: 1 !important: + line-height: 1 !important; } .stat-wrap p { @@ -2385,7 +2385,7 @@ select.mobile-device { margin: 0; font-weight: 300; padding: 4px 0 0; - line-height: 1 !important: + line-height: 1 !important; } #preloader { From 0213dae7d776feb4aeed2dc62bf774556476e6e4 Mon Sep 17 00:00:00 2001 From: Eduardo DdC Date: Sun, 9 Jan 2022 00:07:32 -0500 Subject: [PATCH 19/22] Update Actualizacion de la Pagina web --- index.html | 184 ++++++++++++++++++++++++++--------------------------- 1 file changed, 92 insertions(+), 92 deletions(-) diff --git a/index.html b/index.html index 4823eb8..37c242f 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@ - My CV + TotoMaker3d @@ -57,22 +57,22 @@ @@ -81,14 +81,14 @@
-

hello i'm Eduardo.

+

TOTOMAKER 3D

"Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."

- I'm in the business of being + Estoy en el negocio de ser - Web Developer - Web Design - Computer Support + Diseñador 3D + Artista 3D + Programador BackEnd Otaku!

@@ -125,7 +125,7 @@

-

About Eduardo.

+

Eduardo Díaz del Castillo

Integer rutrum ligula eu dignissim laoreet. Pellentesque venenatis nibh sed tellus faucibus bibendum. Sed fermentum est vitae rhoncus molestie. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed vitae rutrum neque. Ut id erat sit amet libero bibendum aliquam. Donec ac egestas libero, eu bibendum risus. Phasellus et congue justo.

Sed vitae rutrum neque. Ut id erat sit amet libero bibendum aliquam. Donec ac egestas libero, eu bibendum risus. Phasellus et congue justo.

@@ -141,87 +141,20 @@

About Eduardo.

- -
-
-
-

Services

-

Quisque eget nisl id nulla sagittis auctor quis id. Aliquam quis vehicula enim, non aliquam risus.

-
- -
-
-
-
- -
-

Web Development

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

-
-
-
-
-
- -
-

Responsive Design

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

-
-
-
-
-
- -
-

Creative Design

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

-
-
-
-
-
- -
-

Support

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

-
-
-
-
-
- -
-

Web Idea

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

-
-
-
-
-
- -
-

Graphic Design

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

-
-
-
-
-
-
-

Portfolio

+

Proyectos

Quisque eget nisl id nulla sagittis auctor quis id. Aliquam quis vehicula enim, non aliquam risus.

@@ -284,14 +217,81 @@

Portfolio

+
+
+
+

Services

+

Quisque eget nisl id nulla sagittis auctor quis id. Aliquam quis vehicula enim, non aliquam risus.

+
+ +
+
+
+
+ +
+

Web Development

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+ +
+

Responsive Design

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+ +
+

Creative Design

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+ +
+

Support

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+ +
+

Web Idea

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+ +
+

Graphic Design

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+ + - + +
@@ -358,11 +358,11 @@

Quisque auctor lectus interdum nisl accumsan venenatis.

- +-->
-

Contact

+

Contacta Conmigo

Quisque eget nisl id nulla sagittis auctor quis id. Aliquam quis vehicula enim, non aliquam risus.

@@ -418,7 +418,7 @@

Contact