diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..4d8715f
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,9 @@
+root = true
+
+[*]
+indent_style = tab
+indent_size = 2
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+charset = utf-8
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ab338d7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+_site/
+node_modules/
+package-lock.json
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..94f4350
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,5 @@
+{
+ "cSpell.ignoreWords": [
+ "TheSchricks"
+ ]
+}
\ No newline at end of file
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..a469e0c
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,53 @@
+# Articles
+
+All files under the `/content/files` directory (and likewise, the corresponding and respective files in /_site) are licensed under
+[CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). The attribution requirement is appropriately met under the following conditions as specified by the license:
+
+1. Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made . You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
+Whereby the following terms shall mean:
+- Appropriate credit — If supplied, you must provide the name of the creator and attribution parties, a copyright notice, a license notice, a disclaimer notice, and a link to the material. CC licenses prior to Version 4.0 also require you to provide the title of the material if supplied, and may have other slight differences.
+- Indicate if changes were made — You must indicate if you modified the material and retain an indication of previous modifications.
+2. NonCommercial — You may not use the material for commercial purposes.
+3. ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
+4. No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
+Whereby "technological measures" shall mean:
+- The license prohibits application of effective technological measures, defined with reference to Article 11 of the WIPO Copyright Treaty.
+
+# Images
+
+## Images
+All files under the `/content/images/site/` directory (and likewise, the corresponding and respective files in /_site) are copyrighted to Noah L. Schrick. All rights reserved.
+
+## Screenshots
+
+No licensing is provided for any files under `/content/images/screenshots` (and likewise, the corresponding and respective files in /_site) due to potential conflicts with copyright claims with the publisher, developer, artist, or other in any relevant screenshot.
+
+## Logos
+
+All files under the `/content/images/logos` directory (and likewise, the corresponding and respective files in /public) are copyrighted to their respective holders.
+
+# Other files
+
+All other files not mentioned are licensed under the MIT License.
+
+## MIT License
+
+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/_includes/layouts/base.njk b/_includes/layouts/base.njk
new file mode 100644
index 0000000..19d028e
--- /dev/null
+++ b/_includes/layouts/base.njk
@@ -0,0 +1,89 @@
+
+
+
+
+
+ {{ renderData.title or title or metadata.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {%- for entry in collections.all | eleventyNavigation %}
+ {{ entry.title}}
+ {%- endfor %}
+
+
+
+
+
+
+
+
+
Edit the _data/metadata.json with your blog’s information.