1diff --git a/.bundle/config b/.bundle/config
2new file mode 100644
3index 0000000000000000000000000000000000000000..2369228816d4670ce70d83e414bf1a7b8f30a9de
4--- /dev/null
5+++ b/.bundle/config
6@@ -0,0 +1,2 @@
7+---
8+BUNDLE_PATH: "vendor/bundle"
9diff --git a/.gitignore b/.gitignore
10new file mode 100644
11index 0000000000000000000000000000000000000000..932bba838d0e8bc880a92fd3b9352441a974cb6b
12--- /dev/null
13+++ b/.gitignore
14@@ -0,0 +1,4 @@
15+_site
16+vendor/
17+.sass-cache
18+.jekyll-metadata
19diff --git a/404.html b/404.html
20new file mode 100644
21index 0000000000000000000000000000000000000000..c472b4ea0a781061dab1f394627222735d4215bd
22--- /dev/null
23+++ b/404.html
24@@ -0,0 +1,24 @@
25+---
26+layout: default
27+---
28+
29+<style type="text/css" media="screen">
30+ .container {
31+ margin: 10px auto;
32+ max-width: 600px;
33+ text-align: center;
34+ }
35+ h1 {
36+ margin: 30px 0;
37+ font-size: 4em;
38+ line-height: 1;
39+ letter-spacing: -1px;
40+ }
41+</style>
42+
43+<div class="container">
44+ <h1>404</h1>
45+
46+ <p><strong>Page not found :(</strong></p>
47+ <p>The requested page could not be found.</p>
48+</div>
49diff --git a/Gemfile b/Gemfile
50new file mode 100644
51index 0000000000000000000000000000000000000000..2bf1ac755e4f1ad2c38e5a3d4fc5d6b0e41599e2
52--- /dev/null
53+++ b/Gemfile
54@@ -0,0 +1,30 @@
55+source "https://rubygems.org"
56+
57+# Hello! This is where you manage which Jekyll version is used to run.
58+# When you want to use a different version, change it below, save the
59+# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
60+#
61+# bundle exec jekyll serve
62+#
63+# This will help ensure the proper Jekyll version is running.
64+# Happy Jekylling!
65+gem "jekyll", "~> 3.8.5"
66+
67+# This is the default theme for new Jekyll sites. You may change this to anything you like.
68+gem "minima", "~> 2.0"
69+
70+# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
71+# uncomment the line below. To upgrade, run `bundle update github-pages`.
72+# gem "github-pages", group: :jekyll_plugins
73+
74+# If you have any plugins, put them here!
75+group :jekyll_plugins do
76+ gem "jekyll-feed", "~> 0.6"
77+end
78+
79+# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
80+gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
81+
82+# Performance-booster for watching directories on Windows
83+gem "wdm", "~> 0.1.0" if Gem.win_platform?
84+
85diff --git a/Gemfile.lock b/Gemfile.lock
86new file mode 100644
87index 0000000000000000000000000000000000000000..45a864b0146bd008bdde6dce654c64cdd6767e29
88--- /dev/null
89+++ b/Gemfile.lock
90@@ -0,0 +1,74 @@
91+GEM
92+ remote: https://rubygems.org/
93+ specs:
94+ addressable (2.6.0)
95+ public_suffix (>= 2.0.2, < 4.0)
96+ colorator (1.1.0)
97+ concurrent-ruby (1.1.4)
98+ em-websocket (0.5.1)
99+ eventmachine (>= 0.12.9)
100+ http_parser.rb (~> 0.6.0)
101+ eventmachine (1.2.7)
102+ ffi (1.10.0)
103+ forwardable-extended (2.6.0)
104+ http_parser.rb (0.6.0)
105+ i18n (0.9.5)
106+ concurrent-ruby (~> 1.0)
107+ jekyll (3.8.5)
108+ addressable (~> 2.4)
109+ colorator (~> 1.0)
110+ em-websocket (~> 0.5)
111+ i18n (~> 0.7)
112+ jekyll-sass-converter (~> 1.0)
113+ jekyll-watch (~> 2.0)
114+ kramdown (~> 1.14)
115+ liquid (~> 4.0)
116+ mercenary (~> 0.3.3)
117+ pathutil (~> 0.9)
118+ rouge (>= 1.7, < 4)
119+ safe_yaml (~> 1.0)
120+ jekyll-feed (0.11.0)
121+ jekyll (~> 3.3)
122+ jekyll-sass-converter (1.5.2)
123+ sass (~> 3.4)
124+ jekyll-seo-tag (2.5.0)
125+ jekyll (~> 3.3)
126+ jekyll-watch (2.1.2)
127+ listen (~> 3.0)
128+ kramdown (1.17.0)
129+ liquid (4.0.1)
130+ listen (3.1.5)
131+ rb-fsevent (~> 0.9, >= 0.9.4)
132+ rb-inotify (~> 0.9, >= 0.9.7)
133+ ruby_dep (~> 1.2)
134+ mercenary (0.3.6)
135+ minima (2.5.0)
136+ jekyll (~> 3.5)
137+ jekyll-feed (~> 0.9)
138+ jekyll-seo-tag (~> 2.1)
139+ pathutil (0.16.2)
140+ forwardable-extended (~> 2.6)
141+ public_suffix (3.0.3)
142+ rb-fsevent (0.10.3)
143+ rb-inotify (0.10.0)
144+ ffi (~> 1.0)
145+ rouge (3.3.0)
146+ ruby_dep (1.5.0)
147+ safe_yaml (1.0.5)
148+ sass (3.7.3)
149+ sass-listen (~> 4.0.0)
150+ sass-listen (4.0.0)
151+ rb-fsevent (~> 0.9, >= 0.9.4)
152+ rb-inotify (~> 0.9, >= 0.9.7)
153+
154+PLATFORMS
155+ ruby
156+
157+DEPENDENCIES
158+ jekyll (~> 3.8.5)
159+ jekyll-feed (~> 0.6)
160+ minima (~> 2.0)
161+ tzinfo-data
162+
163+BUNDLED WITH
164+ 2.0.1
165diff --git a/_config.yml b/_config.yml
166index fc24e7a62dc288c776f8448cd073a01e7721ed32..f91333e51028c89e08ecafda819e789462ad5f07 100644
167--- a/_config.yml
168+++ b/_config.yml
169@@ -1 +1,43 @@
170-theme: jekyll-theme-hacker
171\ No newline at end of file
172+# Welcome to Jekyll!
173+#
174+# This config file is meant for settings that affect your whole blog, values
175+# which you are expected to set up once and rarely edit after that. If you find
176+# yourself editing this file very often, consider using Jekyll's data files
177+# feature for the data you need to update frequently.
178+#
179+# For technical reasons, this file is *NOT* reloaded automatically when you use
180+# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
181+
182+# Site settings
183+# These are used to personalize your new site. If you look in the HTML files,
184+# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
185+# You can create any custom variable you would like, and they will be accessible
186+# in the templates via {{ site.myvariable }}.
187+title: Your awesome title
188+email: your-email@example.com
189+description: >- # this means to ignore newlines until "baseurl:"
190+ Write an awesome description for your new site here. You can edit this
191+ line in _config.yml. It will appear in your document head meta (for
192+ Google search results) and in your feed.xml site description.
193+baseurl: "" # the subpath of your site, e.g. /blog
194+url: "" # the base hostname & protocol for your site, e.g. http://example.com
195+twitter_username: jekyllrb
196+github_username: jekyll
197+
198+# Build settings
199+markdown: kramdown
200+theme: minima
201+plugins:
202+ - jekyll-feed
203+
204+# Exclude from processing.
205+# The following items will not be processed, by default. Create a custom list
206+# to override the default setting.
207+# exclude:
208+# - Gemfile
209+# - Gemfile.lock
210+# - node_modules
211+# - vendor/bundle/
212+# - vendor/cache/
213+# - vendor/gems/
214+# - vendor/ruby/
215diff --git a/_posts/2019-02-27-welcome-to-jekyll.markdown b/_posts/2019-02-27-welcome-to-jekyll.markdown
216new file mode 100644
217index 0000000000000000000000000000000000000000..eff8d16f6d3e6114cc67e5359c947c7422dc8ba5
218--- /dev/null
219+++ b/_posts/2019-02-27-welcome-to-jekyll.markdown
220@@ -0,0 +1,25 @@
221+---
222+layout: post
223+title: "Welcome to Jekyll!"
224+date: 2019-02-27 10:50:11 -0300
225+categories: jekyll update
226+---
227+You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
228+
229+To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
230+
231+Jekyll also offers powerful support for code snippets:
232+
233+{% highlight ruby %}
234+def print_hi(name)
235+ puts "Hi, #{name}"
236+end
237+print_hi('Tom')
238+#=> prints 'Hi, Tom' to STDOUT.
239+{% endhighlight %}
240+
241+Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
242+
243+[jekyll-docs]: https://jekyllrb.com/docs/home
244+[jekyll-gh]: https://github.com/jekyll/jekyll
245+[jekyll-talk]: https://talk.jekyllrb.com/
246diff --git a/about.md b/about.md
247new file mode 100644
248index 0000000000000000000000000000000000000000..8b4e0b28c83e707c74fcfc6a53f3f084033cfd58
249--- /dev/null
250+++ b/about.md
251@@ -0,0 +1,18 @@
252+---
253+layout: page
254+title: About
255+permalink: /about/
256+---
257+
258+This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
259+
260+You can find the source code for Minima at GitHub:
261+[jekyll][jekyll-organization] /
262+[minima](https://github.com/jekyll/minima)
263+
264+You can find the source code for Jekyll at GitHub:
265+[jekyll][jekyll-organization] /
266+[jekyll](https://github.com/jekyll/jekyll)
267+
268+
269+[jekyll-organization]: https://github.com/jekyll
270diff --git a/docs/index.md b/docs/index.md
271deleted file mode 100644
272index 7f67d12121bcf123f8e008574cbcb8a02fac8018..0000000000000000000000000000000000000000
273--- a/docs/index.md
274+++ /dev/null
275@@ -1,2 +0,0 @@
276-# Under construction
277-
278diff --git a/index.md b/index.md
279new file mode 100644
280index 0000000000000000000000000000000000000000..06715078416fe7a0f7153a3d1e9ec351217c99ad
281--- /dev/null
282+++ b/index.md
283@@ -0,0 +1,6 @@
284+---
285+# Feel free to add content and custom Front Matter to this file.
286+# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
287+
288+layout: home
289+---