diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ec9c89d --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +_site +.sass-cache +node_modules +Gemfile.lock +*.gem \ No newline at end of file diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..609074c --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.ideometre.com \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..f2f1bc5 --- /dev/null +++ b/Gemfile @@ -0,0 +1,24 @@ +source "https://rubygems.org" + +gem "jekyll", ">= 3.8.5" + +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.6" + gem "jekyll-paginate", "~> 1.1.0" + gem "jekyll-sitemap" + gem "jekyll-seo-tag" +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.0" if Gem.win_platform? + +gem "webrick", "~> 1.7" + +gem "base64", "~> 0.3.0" + +gem "csv", "~> 3.3" + +gem "bigdecimal", "~> 3.2" diff --git a/LICENSE b/LICENSE index cf1ab25..4307a8f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,24 +1,21 @@ -This is free and unencumbered software released into the public domain. +The MIT License (MIT) -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. +Copyright (c) 2013-2021 Start Bootstrap LLC -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. +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 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 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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -For more information, please refer to +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 index be9016d..4cd273b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,154 @@ -# ideometre.github.io -Organization Page +# [Start Bootstrap - Clean Blog Jekyll](https://startbootstrap.com/themes/clean-blog-jekyll/) - Official Jekyll Version + +[Clean Blog Jekyll](https://startbootstrap.com/themes/clean-blog-jekyll/) is a stylish, responsive blog theme for [Bootstrap](https://getbootstrap.com/) created by [Start Bootstrap](https://startbootstrap.com/). This theme features a blog homepage, about page, contact page, and an example post page along with a working contact form powered by [Formspree](https://formspree.io/). + +This repository holds the official Jekyll version of the Clean Blog theme on Start Bootstrap! + +## Preview + +[![Clean Blog (Jekyll) Preview](https://startbootstrap.com/assets/img/screenshots/themes/clean-blog-jekyll.png)](http://StartBootstrap.github.io/startbootstrap-clean-blog-jekyll/) + +**[View Live Preview](http://StartBootstrap.github.io/startbootstrap-clean-blog-jekyll/)** + +## Installation & Setup + +### Using RubyGems + +When installing the theme using RubyGems, demo images, posts, and pages are not included. Follow the instructions below for complete setup. + +1. (Optional) Create a new Jekyll site: `jekyll new my-site` +2. Replace the current theme in your `Gemfile` with `gem "jekyll-theme-clean-blog"`. +3. Install the theme (run the command inside your site directory): `bundle install` +4. Replace the current theme in your `_config.yml` file with `theme: jekyll-theme-clean-blog`. +5. Build your site: `bundle exec jekyll serve` + +Assuming there are no errors and the site is building properly, follow these steps next: + +1. Create the following pages if they do not exist already (or change the extension of existing markdown files from `.md` to `.html`): + + * `index.html` - set to `layout: home` + * `about.html` - set to `layout: page` + * `contact.html` - set to `layout: page` + * `posts/index.html` - set to `layout: page` (you will also need to create a `posts` directory) + +2. Configure the `index.html` front matter. Example: + + ```markdown + --- + layout: home + background: '/PATH_TO_IMAGE' + --- + ``` + +3. Configure the `about.html`, `contact.html`, and `posts/index.html` front matter. Example: + + ```markdown + --- + layout: page + title: Page Title + description: This is the page description. + background: '/PATH_TO_IMAGE' + --- + ``` + +4. For each post in the `_posts` directory, update the front matter. Example: + + ```markdown + --- + layout: post + title: "Post Title" + subtitle: "This is the post subtitle." + date: YYYY-MM-DD HH:MM:SS + background: '/PATH_TO_IMAGE' + --- + ``` + + For reference, look at the [demo repository](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll) to see how the files are set up. + +5. Add the form to the `contact.html` page. Add the following code to your `contact.html` page: + + ```html +
+
+
+ + +

+
+
+
+
+ + +

+
+
+
+
+ + +

+
+
+
+
+ + +

+
+
+
+
+
+ +
+
+ ``` + + Make sure you have the `email` setting in your `_config.yml` file set to a working email address! Once this is set, fill out the form and then check your email, verify the email address using the link sent to you by Formspree, and then the form will be working! + +6. Build your site: `bundle exec jekyll serve` + +### Using Core Files + +When using the core files, the demo images, posts, and pages are all included with the download. After following the instructions below, you can then go and change the content of the pages and posts. + +1. [Download](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll/archive/master.zip) or Clone the repository. +2. Update the following configuration settings in your `_config.yml` file: + + * `baseurl` + * `url` + * `title` + * `email` (after setting this setting to a working email address, fill out the form on the contact page and send it - then check your email and verify the address and the form will send you messages when used) + * `description` + * `author` + * `twitter_username` (Optional) + * `facebook_username` (Optional) + * `github_username` (Optional) + * `linkedin_username` (Optional) + * `instagram_username` (Optional) + +3. Build your site: `bundle exec jekyll serve` + +## Bugs and Issues + +Have a bug or an issue with this template? [Open a new issue](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll/issues) here on GitHub! + +## About + +Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects. + +* +* + +Start Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**. + +* +* +* + +Start Bootstrap is based on the [Bootstrap](https://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat). + +## Copyright and License + +Copyright 2013-2021 Start Bootstrap LLC. Code released under the [MIT](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll/blob/master/LICENSE) license. diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..383f9ce --- /dev/null +++ b/_config.yml @@ -0,0 +1,26 @@ +title: L'idéomètre +email: contact@ideometre.com +description: Des idées grandes comme ça! +author: MX +baseurl: "" +url: "https://www.ideometre.com" + +# Social Profiles +twitter_username: ideometre +github_username: ideometre +facebook_username: ideometre +instagram_username: ideometre +linkedin_username: ideometre + +# Add your google-analytics ID here to activate google analytics +google_analytics: UA-XXXXXXXXX-X # out your google-analytics code + +# Build settings +markdown: kramdown +paginate: 5 +paginate_path: "/posts/page:num/" +plugins: + - jekyll-feed + - jekyll-paginate + - jekyll-sitemap ## Uncomment this line to silently generate a sitemaps.org compliant sitemap for your Jekyll site + - jekyll-seo-tag \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..3e1c58d --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,75 @@ + + +
+ +
+
+
+
+
    + {% if site.email %} +
  • + + + + + + +
  • + {% endif %} + {% if site.twitter_username %} +
  • + + + + + + +
  • + {% endif %} + {% if site.facebook_username %} +
  • + + + + + + +
  • + {% endif %} + {% if site.linkedin_username %} +
  • + + + + + + +
  • + {% endif %} + {% if site.github_username %} +
  • + + + + + + +
  • + {% endif %} + {% if site.instagram_username %} +
  • + + + + + + +
  • + {% endif %} +
+ +
+
+
+
diff --git a/_includes/google-analytics.html b/_includes/google-analytics.html new file mode 100644 index 0000000..0d053f2 --- /dev/null +++ b/_includes/google-analytics.html @@ -0,0 +1,10 @@ + + + + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..8b3666a --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,23 @@ + + + + + + + {% if page.title %}{{ page.title | escape }} - {{ site.title | escape }} + {% else %}{{ site.title | escape }}{% endif %} + + + + + + + + + + + + + + + diff --git a/_includes/navbar.html b/_includes/navbar.html new file mode 100644 index 0000000..c514748 --- /dev/null +++ b/_includes/navbar.html @@ -0,0 +1,26 @@ + + diff --git a/_includes/read_time.html b/_includes/read_time.html new file mode 100644 index 0000000..4136111 --- /dev/null +++ b/_includes/read_time.html @@ -0,0 +1,3 @@ + + {% assign words = include.content | number_of_words %} + {% if words < 270 %} 1 min {% else %} {{ words | divided_by:135 }} mins {% endif %} read diff --git a/_includes/scripts.html b/_includes/scripts.html new file mode 100644 index 0000000..2af510e --- /dev/null +++ b/_includes/scripts.html @@ -0,0 +1,84 @@ + + + + + + +{% if page.url contains 'contact' %} + + + + +{% endif %} diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..6fc9a45 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,21 @@ + + + + +{% include head.html %} + + + + {% include navbar.html %} + + {{ content }} + + {% include footer.html %} + + {% include scripts.html %} + + {% include google-analytics.html %} + + + + diff --git a/_layouts/home.html b/_layouts/home.html new file mode 100644 index 0000000..6501456 --- /dev/null +++ b/_layouts/home.html @@ -0,0 +1,66 @@ +--- +layout: default +--- + + +{% if page.background %} +
+ {% else %} +
+ {% endif %} +
+
+
+
+
+

{{ site.title }}

+ {% if site.description %} + {{ site.description }} + {% endif %} +
+
+
+
+
+ +
+
+
+ + {{ content }} + + + {% for post in site.posts limit : 5 %} + + + +
+ + {% endfor %} + + + + +
+
+
diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..56087e4 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,34 @@ +--- +layout: default +--- + + +{% if page.background %} +
+ {% else %} +
+ {% endif %} +
+
+
+
+
+

{{ page.title }}

+ {% if page.description %} + {{ page.description }} + {% endif %} +
+
+
+
+
+ +
+
+
+ + {{ content }} + +
+
+
diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..d4bf8fa --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,54 @@ +--- +layout: default +--- + + +{% if page.background %} +
+ {% else %} +
+ {% endif %} +
+
+
+
+
+

{{ page.title }}

+ {% if page.subtitle %} +

{{ page.subtitle }}

+ {% endif %} + Posted by + {% if page.author %}{{ page.author }}{% else %}{{ site.author }}{% endif %} + on {{ page.date | date: '%B %d, %Y' }} · {% include read_time.html + content=page.content %} + +
+
+
+
+
+ +
+
+
+ + {{ content }} + +
+ +
+ + {% if page.previous.url %} + ← Previous + Post + {% endif %} + {% if page.next.url %} + Next + Post + {% endif %} + +
+ +
+
+
diff --git a/_posts/2020-01-26-dinosaurs.html b/_posts/2020-01-26-dinosaurs.html new file mode 100644 index 0000000..fc3c9f0 --- /dev/null +++ b/_posts/2020-01-26-dinosaurs.html @@ -0,0 +1,40 @@ +--- +layout: post +title: "Dinosaurs are extinct today" +subtitle: "because they lacked opposable thumbs and the brainpower to build a space program." +date: 2020-01-26 23:45:13 -0400 +background: '/img/posts/01.jpg' +--- + +

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

+ +

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

+ +

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

+ +

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

+ +

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

+ +

The Final Frontier

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
+ +

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

+ +

Reaching for the Stars

+ +

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

+ +Demo Image +To go places and do things that have never been done before – that’s what living is all about. + +

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

+ +

As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.

+ +

Placeholder text by Space Ipsum. Photographs by Unsplash.

diff --git a/_posts/2020-01-27-dreams.html b/_posts/2020-01-27-dreams.html new file mode 100644 index 0000000..f687623 --- /dev/null +++ b/_posts/2020-01-27-dreams.html @@ -0,0 +1,39 @@ +--- +layout: post +title: "The dreams of yesterday are the hopes of today and the reality of tomorrow." +date: 2020-01-27 23:45:13 -0400 +background: '/img/posts/02.jpg' +--- + +

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

+ +

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

+ +

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

+ +

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

+ +

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

+ +

The Final Frontier

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
+ +

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

+ +

Reaching for the Stars

+ +

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

+ +Demo Image +To go places and do things that have never been done before – that’s what living is all about. + +

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

+ +

As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.

+ +

Placeholder text by Space Ipsum. Photographs by Unsplash.

diff --git a/_posts/2020-01-28-exploration.html b/_posts/2020-01-28-exploration.html new file mode 100644 index 0000000..ec94119 --- /dev/null +++ b/_posts/2020-01-28-exploration.html @@ -0,0 +1,40 @@ +--- +layout: post +title: "Failure is not an option" +subtitle: "Many say exploration is part of our destiny, but it’s actually our duty to future generations." +date: 2020-01-28 23:45:13 -0400 +background: '/img/posts/03.jpg' +--- + +

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

+ +

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

+ +

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

+ +

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

+ +

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

+ +

The Final Frontier

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
+ +

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

+ +

Reaching for the Stars

+ +

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

+ +Demo Image +To go places and do things that have never been done before – that’s what living is all about. + +

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

+ +

As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.

+ +

Placeholder text by Space Ipsum. Photographs by Unsplash.

diff --git a/_posts/2020-01-29-prophecy.html b/_posts/2020-01-29-prophecy.html new file mode 100644 index 0000000..65704ea --- /dev/null +++ b/_posts/2020-01-29-prophecy.html @@ -0,0 +1,40 @@ +--- +layout: post +title: "Science has not yet mastered prophecy" +subtitle: "We predict too much for the next year and yet far too little for the next ten." +date: 2020-01-29 23:45:13 -0400 +background: '/img/posts/04.jpg' +--- + +

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

+ +

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

+ +

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

+ +

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

+ +

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

+ +

The Final Frontier

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
+ +

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

+ +

Reaching for the Stars

+ +

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

+ +Demo Image +To go places and do things that have never been done before – that’s what living is all about. + +

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

+ +

As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.

+ +

Placeholder text by Space Ipsum. Photographs by Unsplash.

diff --git a/_posts/2020-01-30-heartbeats.html b/_posts/2020-01-30-heartbeats.html new file mode 100644 index 0000000..a444e6c --- /dev/null +++ b/_posts/2020-01-30-heartbeats.html @@ -0,0 +1,39 @@ +--- +layout: post +title: "I believe every human has a finite number of heartbeats. I don't intend to waste any of mine." +date: 2020-01-30 23:45:13 -0400 +background: '/img/posts/05.jpg' +--- + +

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

+ +

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

+ +

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

+ +

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

+ +

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

+ +

The Final Frontier

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
+ +

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

+ +

Reaching for the Stars

+ +

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

+ +Demo Image +To go places and do things that have never been done before – that’s what living is all about. + +

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

+ +

As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.

+ +

Placeholder text by Space Ipsum. Photographs by Unsplash.

diff --git a/_posts/2020-01-31-man-must-explore.html b/_posts/2020-01-31-man-must-explore.html new file mode 100644 index 0000000..4dd948b --- /dev/null +++ b/_posts/2020-01-31-man-must-explore.html @@ -0,0 +1,40 @@ +--- +layout: post +title: "Man must explore, and this is exploration at its greatest" +subtitle: "Problems look mighty small from 150 miles up" +date: 2020-01-31 10:45:13 -0400 +background: '/img/posts/06.jpg' +--- + +

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

+ +

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

+ +

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

+ +

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

+ +

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

+ +

The Final Frontier

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

+ +
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
+ +

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

+ +

Reaching for the Stars

+ +

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

+ +Demo Image +To go places and do things that have never been done before – that’s what living is all about. + +

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

+ +

As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.

+ +

Placeholder text by Space Ipsum. Photographs by Unsplash.

diff --git a/_sass/styles.scss b/_sass/styles.scss new file mode 100644 index 0000000..e679d0e --- /dev/null +++ b/_sass/styles.scss @@ -0,0 +1,2 @@ +// Import Core Clean Blog SCSS +@import "../assets/vendor/startbootstrap-clean-blog/scss/styles.scss"; diff --git a/about.html b/about.html new file mode 100644 index 0000000..c661ef6 --- /dev/null +++ b/about.html @@ -0,0 +1,12 @@ +--- +layout: page +title: About Me +description: This is what I do. +background: '/img/bg-about.jpg' +--- + +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sed quisquam ut perspiciatis, repudiandae nulla animi iste vel, praesentium repellendus molestias aliquid consequatur, earum rem qui error voluptates eius enim consequuntur!

+ +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ex alias, earum consectetur quia natus ducimus voluptate explicabo, hic porro reprehenderit, quasi? Tenetur ipsum distinctio laboriosam perspiciatis officiis dolore, architecto id.

+ +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam inventore aspernatur repellendus incidunt adipisci modi voluptates recusandae iste eligendi, repudiandae corporis quod aut, optio! Explicabo quaerat unde voluptatem! Itaque, eum!

diff --git a/assets/main.scss b/assets/main.scss new file mode 100644 index 0000000..4f55e4d --- /dev/null +++ b/assets/main.scss @@ -0,0 +1,5 @@ +--- +# Only the main Sass file needs front matter (the dashes are enough) +--- + +@import "styles"; diff --git a/assets/scripts.js b/assets/scripts.js new file mode 100644 index 0000000..d286f17 --- /dev/null +++ b/assets/scripts.js @@ -0,0 +1,3 @@ +$(function () { + $('[data-toggle="tooltip"]').tooltip() +}) diff --git a/assets/vendor/bootstrap/scss/_alert.scss b/assets/vendor/bootstrap/scss/_alert.scss new file mode 100644 index 0000000..4aa1fc2 --- /dev/null +++ b/assets/vendor/bootstrap/scss/_alert.scss @@ -0,0 +1,52 @@ +// +// Base styles +// + +.alert { + position: relative; + padding: $alert-padding-y $alert-padding-x; + margin-bottom: $alert-margin-bottom; + border: $alert-border-width solid transparent; + @include border-radius($alert-border-radius); +} + +// Headings for larger alerts +.alert-heading { + // Specified to prevent conflicts of changing $headings-color + color: inherit; +} + +// Provide class for links that match alerts +.alert-link { + font-weight: $alert-link-font-weight; +} + + +// Dismissible alerts +// +// Expand the right padding and account for the close button's positioning. + +.alert-dismissible { + padding-right: $close-font-size + $alert-padding-x * 2; + + // Adjust close link position + .close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: $alert-padding-y $alert-padding-x; + color: inherit; + } +} + + +// Alternate styles +// +// Generate contextual modifier classes for colorizing the alert. + +@each $color, $value in $theme-colors { + .alert-#{$color} { + @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level)); + } +} diff --git a/assets/vendor/bootstrap/scss/_badge.scss b/assets/vendor/bootstrap/scss/_badge.scss new file mode 100644 index 0000000..42c5d08 --- /dev/null +++ b/assets/vendor/bootstrap/scss/_badge.scss @@ -0,0 +1,54 @@ +// Base class +// +// Requires one of the contextual, color modifier classes for `color` and +// `background-color`. + +.badge { + display: inline-block; + padding: $badge-padding-y $badge-padding-x; + @include font-size($badge-font-size); + font-weight: $badge-font-weight; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + @include border-radius($badge-border-radius); + @include transition($badge-transition); + + @at-root a#{&} { + @include hover-focus() { + text-decoration: none; + } + } + + // Empty badges collapse automatically + &:empty { + display: none; + } +} + +// Quick fix for badges in buttons +.btn .badge { + position: relative; + top: -1px; +} + +// Pill badges +// +// Make them extra rounded with a modifier to replace v3's badges. + +.badge-pill { + padding-right: $badge-pill-padding-x; + padding-left: $badge-pill-padding-x; + @include border-radius($badge-pill-border-radius); +} + +// Colors +// +// Contextual variations (linked badges get darker on :hover). + +@each $color, $value in $theme-colors { + .badge-#{$color} { + @include badge-variant($value); + } +} diff --git a/assets/vendor/bootstrap/scss/_breadcrumb.scss b/assets/vendor/bootstrap/scss/_breadcrumb.scss new file mode 100644 index 0000000..9c204c7 --- /dev/null +++ b/assets/vendor/bootstrap/scss/_breadcrumb.scss @@ -0,0 +1,42 @@ +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: $breadcrumb-padding-y $breadcrumb-padding-x; + margin-bottom: $breadcrumb-margin-bottom; + @include font-size($breadcrumb-font-size); + list-style: none; + background-color: $breadcrumb-bg; + @include border-radius($breadcrumb-border-radius); +} + +.breadcrumb-item { + // The separator between breadcrumbs (by default, a forward-slash: "/") + + .breadcrumb-item { + padding-left: $breadcrumb-item-padding; + + &::before { + float: left; // Suppress inline spacings and underlining of the separator + padding-right: $breadcrumb-item-padding; + color: $breadcrumb-divider-color; + content: escape-svg($breadcrumb-divider); + } + } + + // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built + // without `