Looks like this page doesn't exist. Return home to get a fresh start.
+
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..b5d4b57
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+
+git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
+
+gem "jekyll", "~> 4.0"
+gem "jekyll-last-modified-at"
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..abaee97
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,75 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ addressable (2.7.0)
+ public_suffix (>= 2.0.2, < 5.0)
+ colorator (1.1.0)
+ concurrent-ruby (1.1.6)
+ em-websocket (0.5.1)
+ eventmachine (>= 0.12.9)
+ http_parser.rb (~> 0.6.0)
+ eventmachine (1.2.7)
+ ffi (1.12.2)
+ forwardable-extended (2.6.0)
+ http_parser.rb (0.6.0)
+ i18n (1.8.2)
+ concurrent-ruby (~> 1.0)
+ jekyll (4.0.0)
+ addressable (~> 2.4)
+ colorator (~> 1.0)
+ em-websocket (~> 0.5)
+ i18n (>= 0.9.5, < 2)
+ jekyll-sass-converter (~> 2.0)
+ jekyll-watch (~> 2.0)
+ kramdown (~> 2.1)
+ kramdown-parser-gfm (~> 1.0)
+ liquid (~> 4.0)
+ mercenary (~> 0.3.3)
+ pathutil (~> 0.9)
+ rouge (~> 3.0)
+ safe_yaml (~> 1.0)
+ terminal-table (~> 1.8)
+ jekyll-last-modified-at (1.2.1)
+ jekyll (>= 3.7, < 5.0)
+ posix-spawn (~> 0.3.9)
+ jekyll-redirect-from (0.16.0)
+ jekyll (>= 3.3, < 5.0)
+ jekyll-sass-converter (2.1.0)
+ sassc (> 2.0.1, < 3.0)
+ jekyll-watch (2.2.1)
+ listen (~> 3.0)
+ kramdown (2.2.1)
+ rexml
+ kramdown-parser-gfm (1.1.0)
+ kramdown (~> 2.0)
+ liquid (4.0.3)
+ listen (3.2.1)
+ rb-fsevent (~> 0.10, >= 0.10.3)
+ rb-inotify (~> 0.9, >= 0.9.10)
+ mercenary (0.3.6)
+ pathutil (0.16.2)
+ forwardable-extended (~> 2.6)
+ posix-spawn (0.3.13)
+ public_suffix (4.0.4)
+ rb-fsevent (0.10.3)
+ rb-inotify (0.10.1)
+ ffi (~> 1.0)
+ rexml (3.2.4)
+ rouge (3.18.0)
+ safe_yaml (1.0.5)
+ sassc (2.3.0)
+ ffi (~> 1.9)
+ terminal-table (1.8.0)
+ unicode-display_width (~> 1.1, >= 1.1.1)
+ unicode-display_width (1.7.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ jekyll (~> 4.0)
+ jekyll-last-modified-at
+ jekyll-redirect-from (~> 0.15)
+
+BUNDLED WITH
+ 2.1.4
diff --git a/LICENSE b/LICENSE
index 86dd1da..4674105 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,21 +1,9 @@
-MIT License
+# Released under MIT License
-Copyright (c) 2020 Maxime Vaillancourt
+Copyright (c) 2020 Maxime Vaillancourt.
-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:
+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 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.
+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.
\ No newline at end of file
diff --git a/README.md b/README.md
index 02ec0ec..272a117 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,7 @@
-# digital-garden-jekyll-template
\ No newline at end of file
+# Digital garden Jekyll template
+
+Use this template repository to get started with your own digital garden.
+
+## License
+
+Source code is available under the [MIT license](LICENSE.md).
\ No newline at end of file
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..5623dfa
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,27 @@
+title: My digital garden
+include: ['_pages']
+
+permalink: pretty
+relative_permalinks: false
+
+plugins:
+ - jekyll-last-modified-at
+
+sass:
+ sass_dir: _sass
+ style: :compressed
+
+collections:
+ notes:
+ output: true
+ permalink: /:path
+
+defaults:
+ - scope:
+ path: "**/*"
+ values:
+ layout: "default"
+ - scope:
+ path: "_notes/**/*.md"
+ values:
+ layout: "note"
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..496018c
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1 @@
+This is the footer. Include anything you'd like here, like a link to an About page.
\ No newline at end of file
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..c5248d8
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,53 @@
+
+ {% capture styles %}
+ {% include main.scss %}
+ {% endcapture %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if page.excerpt %}
+
+ {% else %}
+
+ {% endif %}
+
+ {% if page.title %}
+
+
+ {% else %}
+
+
+ {% endif %}
+
+ {% if page.date %}
+
+
+ {% endif %}
+
+
+
+ {% if page.image %}
+
+ {% endif %}
+
+
+ {% if page.id == "home" %}
+ {{ site.title }}
+ {% else %}
+ {{ page.title }} — {{ site.title }}
+ {% endif %}
+
+
diff --git a/_includes/main.scss b/_includes/main.scss
new file mode 100644
index 0000000..58ceb8a
--- /dev/null
+++ b/_includes/main.scss
@@ -0,0 +1,3 @@
+@import "../_sass/normalize";
+@import "../_sass/code";
+@import "../_sass/style";
diff --git a/_includes/nav.html b/_includes/nav.html
new file mode 100644
index 0000000..295f5e3
--- /dev/null
+++ b/_includes/nav.html
@@ -0,0 +1,3 @@
+
+
+
diff --git a/_notes/cats.md b/_notes/cats.md
new file mode 100644
index 0000000..d5c755e
--- /dev/null
+++ b/_notes/cats.md
@@ -0,0 +1,19 @@
+---
+title: A note about cats
+---
+
+This is a second note with a poem with cats.
+
+> I like my pillow, my fancy bed,
+>
+> My cat tree and the bathroom sink.
+>
+> Each has its time and fills a need,
+>
+> but a box is best when I want to think.
+
+You can create as many notes as you want.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur et risus at ipsum pharetra pellentesque vel in massa. Nam ornare, velit sed pulvinar gravida, justo ipsum eleifend augue, id porta velit eros vestibulum odio. Vestibulum dignissim malesuada sapien, eu volutpat lacus pellentesque et. Curabitur dui nisi, sagittis ut tempor ac, scelerisque in diam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Vestibulum vitae euismod ex. Morbi lacinia iaculis tempor.
+
+Nunc porttitor lacus ullamcorper mauris porttitor feugiat. Vestibulum condimentum lacus vitae orci lobortis pellentesque in ac dolor. Nullam libero justo, suscipit id suscipit vel, tincidunt vitae lectus. Phasellus gravida iaculis ligula, at pharetra urna. Nunc vel tellus eleifend, aliquet magna non, condimentum est. Pellentesque vulputate posuere felis eget sodales. Cras finibus tortor porta libero bibendum, vel bibendum orci luctus. Donec ac eros vitae erat malesuada imperdiet at tempor turpis.
\ No newline at end of file
diff --git a/_notes/consistency.md b/_notes/consistency.md
new file mode 100644
index 0000000..4fb3985
--- /dev/null
+++ b/_notes/consistency.md
@@ -0,0 +1,7 @@
+---
+title: Consistency is key
+---
+
+Show up. Do the work. Be consistent.
+
+Then go take a look at the [first note](/your-first-note).
\ No newline at end of file
diff --git a/_notes/your-first-note.md b/_notes/your-first-note.md
new file mode 100644
index 0000000..69e7a84
--- /dev/null
+++ b/_notes/your-first-note.md
@@ -0,0 +1,15 @@
+---
+title: Your first seed
+image: /assets/image.jpg
+---
+
+This is your first note.
+
+To link to another note, use regular Markdown syntax for links, with a relative link to the other note, like this: [this is a link to a note about cats](/cats).
+
+
+Notice in the "Notes mentioning this note" section that there is another note linking to this note. This is a bi-directional link, and those are automatically created when you create links to other notes.
+
+You can display images using Markdown's image tag, like this:
+
+
\ No newline at end of file
diff --git a/_pages/about.md b/_pages/about.md
new file mode 100644
index 0000000..e6b0634
--- /dev/null
+++ b/_pages/about.md
@@ -0,0 +1,9 @@
+---
+layout: default
+title: About
+permalink: /about
+---
+
+*This is an about page.*
+
+Feel free to tell the world about what you love! 😍
\ No newline at end of file
diff --git a/_pages/index.md b/_pages/index.md
new file mode 100644
index 0000000..17139c6
--- /dev/null
+++ b/_pages/index.md
@@ -0,0 +1,11 @@
+---
+layout: default
+title: Home
+id: home
+permalink: /
+---
+
+
+
Welcome! 🌱
+
This is your digital garden. Here's the first note to get started on your exploration.