From c6e63e686578ca4ce35c5d50442e324f77603447 Mon Sep 17 00:00:00 2001 From: MisterE123 Date: Sat, 22 Jan 2022 14:55:46 -0500 Subject: [PATCH] start making site --- blog/.gitignore => .gitignore | 0 blog/404.html => 404.html | 0 blog/Gemfile => Gemfile | 0 blog/Gemfile.lock => Gemfile.lock | 0 blog/_config.yml => _config.yml | 2 +- {blog/_posts => _posts}/2022-01-22-welcome-to-jekyll.markdown | 0 blog/about.markdown => about.markdown | 0 blog/index.markdown => index.markdown | 0 8 files changed, 1 insertion(+), 1 deletion(-) rename blog/.gitignore => .gitignore (100%) rename blog/404.html => 404.html (100%) rename blog/Gemfile => Gemfile (100%) rename blog/Gemfile.lock => Gemfile.lock (100%) rename blog/_config.yml => _config.yml (95%) rename {blog/_posts => _posts}/2022-01-22-welcome-to-jekyll.markdown (100%) rename blog/about.markdown => about.markdown (100%) rename blog/index.markdown => index.markdown (100%) diff --git a/blog/.gitignore b/.gitignore similarity index 100% rename from blog/.gitignore rename to .gitignore diff --git a/blog/404.html b/404.html similarity index 100% rename from blog/404.html rename to 404.html diff --git a/blog/Gemfile b/Gemfile similarity index 100% rename from blog/Gemfile rename to Gemfile diff --git a/blog/Gemfile.lock b/Gemfile.lock similarity index 100% rename from blog/Gemfile.lock rename to Gemfile.lock diff --git a/blog/_config.yml b/_config.yml similarity index 95% rename from blog/_config.yml rename to _config.yml index 7f095b7..ae00a1d 100644 --- a/blog/_config.yml +++ b/_config.yml @@ -24,7 +24,7 @@ description: >- # this means to ignore newlines until "baseurl:" A Periodic development blog for minetest. See what's new in minetest! domain: my-site.github.io # if you want to force HTTPS, specify the domain without the http at the start, e.g. example.com url: https://my-site.github.io # the base hostname and protocol for your site, e.g. http://example.com -baseurl: /minetestblog.github.io/blog # place folder name if the site is served in a subfolder +baseurl: /minetestblog.github.io/ # place folder name if the site is served in a subfolder twitter_username: jekyllrb github_username: jekyll diff --git a/blog/_posts/2022-01-22-welcome-to-jekyll.markdown b/_posts/2022-01-22-welcome-to-jekyll.markdown similarity index 100% rename from blog/_posts/2022-01-22-welcome-to-jekyll.markdown rename to _posts/2022-01-22-welcome-to-jekyll.markdown diff --git a/blog/about.markdown b/about.markdown similarity index 100% rename from blog/about.markdown rename to about.markdown diff --git a/blog/index.markdown b/index.markdown similarity index 100% rename from blog/index.markdown rename to index.markdown