diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..4107a70 Binary files /dev/null and b/.DS_Store differ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6549e76 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Dinesh Pandiyan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f2e1848 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# Dev Landing Page + +Minimal landing page for developers. + +Developers don't talk much. Their code does all the talking. So here's a minimal landing page for developers. + +## Why? [![start with why](https://img.shields.io/badge/start%20with-why%3F-brightgreen.svg?style=flat)](http://www.ted.com/talks/simon_sinek_how_great_leaders_inspire_action) + +I wanted a dev landing page to showcase everything I do online and I wanted it to be minimal and right to the point rather beautiful and hefty. And I think most of the devs out there would want the same. + +So I sat down one night and created this **Dev Landing Page**. Feel free to fork, clone, play around and make this your own. + +## Themes + +Dev Landing Page comes in 9 **material themes**. + +![9 Material Themes](https://image.ibb.co/jJVKCn/dev_landing_page_themes.jpg) + +If none of these themes fit within your taste, it's quite easy to customize and create your own too. + +## GitHub Pages + +GitHub makes it easy to create personal websites. Follow this link - [GitHub Pages](https://pages.github.com/) to know how or follow the steps below. + +If you already have a GitHub profile (obviously) + +* Create a new repo with the name `{username}.github.io` +* Clone/Fork this repo and copy the files to your newly created repo +* Customize your name, links and everything else for your landing page +* `git push` + +Voila! Your site should be live at `https://{username}.github.io` + +Here's my **Dev Landing Page** - [Dinesh Pandiyan - v1](https://v1.dineshpandiyan.com/) + +### Custom Domain + +If you want to make your new landing page available under a domain like `{username}.com` you can get started here - [Setting up a custom domain](https://help.github.com/articles/quick-start-setting-up-a-custom-domain/). + +## License + +MIT © Dinesh Pandiyan diff --git a/css/reset.css b/css/reset.css new file mode 100644 index 0000000..c7264bb --- /dev/null +++ b/css/reset.css @@ -0,0 +1,25 @@ +/* Minimal CSS Reset */ + +html { + box-sizing: border-box; + font-size: 12px; +} + +*, *:before, *:after { + box-sizing: inherit; +} + +body, h1, h2, h3, h4, h5, h6, p, ol, ul { + margin: 0; + padding: 0; + font-weight: normal; +} + +ol, ul { + list-style: none; +} + +img { + max-width: 100%; + height: auto; +} \ No newline at end of file diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..2a1bcc7 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,75 @@ +/* Typography */ + +html { + font-family: 'Roboto', sans-serif; +} + +@media (min-width: 576px) { + html { + font-size: 14px; + } +} + +@media (min-width: 768px) { + html { + font-size: 16px; + } +} + +@media (min-width: 992px) { + html { + font-size: 18px; + } +} + +@media (min-width: 1200px) { + html { + font-size: 20px; + } +} + +.icons-social i { + font-size: 3em; +} + +/* Custom Styles */ + +main { + display: flex; + flex-direction: column; + min-height: 100vh; + justify-content: center; + padding: 0 30px; + text-align: center; +} + +main > .intro { + font-family: 'Reem Kufi', sans-serif; + font-size: 3.75em; + font-weight: 600; +} + +main > .tagline { + font-size: 1.5rem; + margin: 1.5rem 0; + font-weight: 100; +} + +.icons-social i { + padding: 10px; +} + +.icons-social a { + text-decoration: none; +} + +.devto { + margin-bottom: -0.20rem; +} + +.devto svg { + margin-bottom: -0.20rem; + margin-left: 0.675rem;; + width: 2.65rem; + height: 2.65rem; +} \ No newline at end of file diff --git a/css/themes/green-white.css b/css/themes/green-white.css new file mode 100644 index 0000000..e735d93 --- /dev/null +++ b/css/themes/green-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #43A047; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/grey-white.css b/css/themes/grey-white.css new file mode 100644 index 0000000..6e88078 --- /dev/null +++ b/css/themes/grey-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #485564; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/indigo-white.css b/css/themes/indigo-white.css new file mode 100644 index 0000000..8f67212 --- /dev/null +++ b/css/themes/indigo-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #303F9F; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/red-white.css b/css/themes/red-white.css new file mode 100644 index 0000000..cfae307 --- /dev/null +++ b/css/themes/red-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #AF3D4E; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/white-blue.css b/css/themes/white-blue.css new file mode 100644 index 0000000..7a279b3 --- /dev/null +++ b/css/themes/white-blue.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #FAFAFA; + color: #0277BD; +} + +.icons-social a { + color: #0277BD; +} + +.icons-social a svg path{ + fill: #0277BD; +} \ No newline at end of file diff --git a/css/themes/white-grey.css b/css/themes/white-grey.css new file mode 100644 index 0000000..d0137dc --- /dev/null +++ b/css/themes/white-grey.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #EDEDED; + color: #4B5658; +} + +.icons-social a { + color: #4B5658; +} + +.icons-social a svg path{ + fill: #4B5658; +} \ No newline at end of file diff --git a/css/themes/white-indigo.css b/css/themes/white-indigo.css new file mode 100644 index 0000000..e5e36d6 --- /dev/null +++ b/css/themes/white-indigo.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #E8EAF6; + color: #303F9F; +} + +.icons-social a { + color: #303F9F; +} + +.icons-social a svg path{ + fill: #303F9F; +} \ No newline at end of file diff --git a/css/themes/white-red.css b/css/themes/white-red.css new file mode 100644 index 0000000..5f63181 --- /dev/null +++ b/css/themes/white-red.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #EDEDED; + color: #AF3D4E; +} + +.icons-social a { + color: #AF3D4E; +} + +.icons-social a svg path{ + fill: #AF3D4E; +} \ No newline at end of file diff --git a/css/themes/yellow-black.css b/css/themes/yellow-black.css new file mode 100644 index 0000000..309253b --- /dev/null +++ b/css/themes/yellow-black.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #FFEB3B; + color: #1E1E1E; +} + +.icons-social a { + color: #1E1E1E; +} + +.icons-social a svg path{ + fill: #1E1E1E; +} \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..6cdfd40 Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html index b95bb1f..185a101 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,83 @@ ---- -layout: home -author_profile: true ---- + + + + + + + + JensMohrmann.de | Jens Mohrmann + + + + + + + + + + + + + + + + + + +
+
Jens Mohrmann
+
Physicist | Product Development Engineer
+ +
+ + + LinkedIn + + + + Github + + + + + + + + + facebook + + + + instagram + + + + YouTube + +
+
+ + diff --git a/minimalMistakes_bak/.DS_Store b/minimalMistakes_bak/.DS_Store new file mode 100644 index 0000000..fb2e62e Binary files /dev/null and b/minimalMistakes_bak/.DS_Store differ diff --git a/Gemfile b/minimalMistakes_bak/Gemfile similarity index 100% rename from Gemfile rename to minimalMistakes_bak/Gemfile diff --git a/_config.yml b/minimalMistakes_bak/_config.yml similarity index 100% rename from _config.yml rename to minimalMistakes_bak/_config.yml diff --git a/_data/navigation.yml b/minimalMistakes_bak/_data/navigation.yml similarity index 100% rename from _data/navigation.yml rename to minimalMistakes_bak/_data/navigation.yml diff --git a/_pages/about.md b/minimalMistakes_bak/_pages/about.md similarity index 100% rename from _pages/about.md rename to minimalMistakes_bak/_pages/about.md diff --git a/_pages/timeslicer.md b/minimalMistakes_bak/_pages/timeslicer.md similarity index 100% rename from _pages/timeslicer.md rename to minimalMistakes_bak/_pages/timeslicer.md diff --git a/_posts/2018-02-06-A-Test.md b/minimalMistakes_bak/_posts/2018-02-06-A-Test.md similarity index 100% rename from _posts/2018-02-06-A-Test.md rename to minimalMistakes_bak/_posts/2018-02-06-A-Test.md diff --git a/assets/images/jens.jpg b/minimalMistakes_bak/assets/images/jens.jpg similarity index 100% rename from assets/images/jens.jpg rename to minimalMistakes_bak/assets/images/jens.jpg diff --git a/minimalMistakes_bak/index.html b/minimalMistakes_bak/index.html new file mode 100644 index 0000000..b95bb1f --- /dev/null +++ b/minimalMistakes_bak/index.html @@ -0,0 +1,4 @@ +--- +layout: home +author_profile: true +---