From fd4b3a76e4417819a0f107b4fd466930153f73ec Mon Sep 17 00:00:00 2001 From: Jerome Lachaud Date: Fri, 25 Jul 2014 23:44:57 +0200 Subject: [PATCH] new design --- .gitignore | 1 + _config.yml | 6 +- _includes/about.html | 24 + _includes/contact.html | 54 + _includes/footer.html | 110 +- _includes/head.html | 15 + _includes/header.html | 75 +- _includes/js.html | 17 + _includes/modals.html | 223 ++ _includes/portfolio_grid.html | 74 + _layouts/default.html | 18 +- .../2014-07-20-mon-deuxieme-billet.markdown | 24 + about.md | 11 - contact.md | 8 - css/bootstrap.min.css | 7 + css/font-awesome/css/font-awesome.css | 1566 ++++++++++++ css/font-awesome/css/font-awesome.min.css | 4 + css/font-awesome/fonts/FontAwesome.otf | Bin 0 -> 75188 bytes .../fonts/fontawesome-webfont.eot | Bin 0 -> 72449 bytes .../fonts/fontawesome-webfont.svg | 504 ++++ .../fonts/fontawesome-webfont.ttf | Bin 0 -> 141564 bytes .../fonts/fontawesome-webfont.woff | Bin 0 -> 83760 bytes css/main.css | 827 ++++--- img/portfolio/cabin.png | Bin 0 -> 36514 bytes img/portfolio/cake.png | Bin 0 -> 17068 bytes img/portfolio/circus.png | Bin 0 -> 27984 bytes img/portfolio/game.png | Bin 0 -> 25896 bytes img/portfolio/safe.png | Bin 0 -> 19240 bytes img/portfolio/submarine.png | Bin 0 -> 24330 bytes img/profile.png | Bin 0 -> 10284 bytes js/bootstrap.js | 2114 +++++++++++++++++ js/bootstrap.min.js | 6 + js/cbpAnimatedHeader.js | 44 + js/cbpAnimatedHeader.min.js | 11 + js/classie.js | 80 + js/contact_me.js | 70 + js/freelancer.js | 32 + js/jqBootstrapValidation.js | 912 +++++++ js/jquery-1.11.0.js | 4 + js/jquery.easing.min.js | 44 + mail/contact_me.php | 26 + 41 files changed, 6406 insertions(+), 505 deletions(-) create mode 100644 _includes/about.html create mode 100644 _includes/contact.html create mode 100644 _includes/js.html create mode 100644 _includes/modals.html create mode 100644 _includes/portfolio_grid.html create mode 100644 _posts/2014-07-20-mon-deuxieme-billet.markdown delete mode 100644 about.md delete mode 100644 contact.md create mode 100755 css/bootstrap.min.css create mode 100755 css/font-awesome/css/font-awesome.css create mode 100755 css/font-awesome/css/font-awesome.min.css create mode 100755 css/font-awesome/fonts/FontAwesome.otf create mode 100755 css/font-awesome/fonts/fontawesome-webfont.eot create mode 100755 css/font-awesome/fonts/fontawesome-webfont.svg create mode 100755 css/font-awesome/fonts/fontawesome-webfont.ttf create mode 100755 css/font-awesome/fonts/fontawesome-webfont.woff create mode 100755 img/portfolio/cabin.png create mode 100755 img/portfolio/cake.png create mode 100755 img/portfolio/circus.png create mode 100755 img/portfolio/game.png create mode 100755 img/portfolio/safe.png create mode 100755 img/portfolio/submarine.png create mode 100755 img/profile.png create mode 100755 js/bootstrap.js create mode 100755 js/bootstrap.min.js create mode 100755 js/cbpAnimatedHeader.js create mode 100755 js/cbpAnimatedHeader.min.js create mode 100755 js/classie.js create mode 100755 js/contact_me.js create mode 100755 js/freelancer.js create mode 100755 js/jqBootstrapValidation.js create mode 100755 js/jquery-1.11.0.js create mode 100644 js/jquery.easing.min.js create mode 100755 mail/contact_me.php diff --git a/.gitignore b/.gitignore index 57510a2..4520580 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ _site/ +dploy.yaml \ No newline at end of file diff --git a/_config.yml b/_config.yml index 7e74ea1..b268c43 100644 --- a/_config.yml +++ b/_config.yml @@ -2,11 +2,11 @@ title: Jerome Lachaud email: jeromelachaud@gmail.com 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." -baseurl: "" -url: "http://jeromelachaud.com" +host: "localhost" +port: "4002" twitter_username: jeromelachaud github_username: jeromelachaud # Build settings markdown: kramdown -permalink: pretty +permalink: pretty \ No newline at end of file diff --git a/_includes/about.html b/_includes/about.html new file mode 100644 index 0000000..6c0e279 --- /dev/null +++ b/_includes/about.html @@ -0,0 +1,24 @@ + +
+
+
+
+

About

+
+
+
+
+
+

Freelancer is a free bootstrap theme created by Start Bootstrap. The download includes the complete source files including HTML, CSS, and JavaScript as well as optional LESS stylesheets for easy customization.

+
+
+

Whether you're a student looking to showcase your work, a professional looking to attract clients, or a graphic artist looking to share your projects, this template is the perfect starting point!

+
+ +
+
+
\ No newline at end of file diff --git a/_includes/contact.html b/_includes/contact.html new file mode 100644 index 0000000..bbd0c9a --- /dev/null +++ b/_includes/contact.html @@ -0,0 +1,54 @@ + +
+
+
+
+

Contact Me

+
+
+
+
+
+ + +
+
+
+ + +

+
+
+
+
+ + +

+
+
+
+
+ + +

+
+
+
+
+ + +

+
+
+
+
+
+
+ +
+
+
+
+
+
+
\ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index 0026c4c..094f7be 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,61 +1,53 @@ - diff --git a/_includes/head.html b/_includes/head.html index c8f1016..cce1160 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -6,7 +6,22 @@ + + + + + + + + + + + + diff --git a/_includes/header.html b/_includes/header.html index e5e6f26..ec493fb 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,28 +1,57 @@ -