From 5dac24093a2e3064da27da1d55bf5ac7f9bb8c63 Mon Sep 17 00:00:00 2001 From: Ray Lyon Date: Tue, 29 Sep 2020 18:25:34 -0400 Subject: [PATCH] nav bar and search --- _config.yml | 13 +++++++------ _data/navigation.yml | 7 +++++++ _pages/about.md | 13 +++++++++++++ _pages/categories.md | 5 +++++ _pages/tags.md | 5 +++++ 5 files changed, 37 insertions(+), 6 deletions(-) create mode 100644 _data/navigation.yml create mode 100644 _pages/about.md create mode 100644 _pages/categories.md create mode 100644 _pages/tags.md diff --git a/_config.yml b/_config.yml index a139da9..e828f40 100644 --- a/_config.yml +++ b/_config.yml @@ -21,7 +21,7 @@ title_separator : "-" subtitle : "Breaking things so you don't have to." name : "Ray Lyon" description : "Linux, self-hosting, and privacy." -url : # "https://rayagainstthemachine.net" +url : "https://rayagainstthemachine.net" baseurl : # the subpath of your site, e.g. "/blog" repository : "skoobasteeve/skoobasteeve.github.io.2" teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png" @@ -51,9 +51,9 @@ reCaptcha: secret : atom_feed: path : # blank (default) uses feed.xml -search : # true, false (default) -search_full_content : # true, false (default) -search_provider : # lunr (default), algolia, google +search : true +search_full_content : true +search_provider : lunr algolia: application_id : # YOUR_APPLICATION_ID index_name : # YOUR_INDEX_NAME @@ -75,7 +75,7 @@ facebook: username : app_id : publisher : -og_image : # Open Graph/Twitter default site image +og_image : "/assets/images/avatar.jpg" # For specifying social profiles # - https://developers.google.com/structured-data/customize/social-profiles social: @@ -215,7 +215,7 @@ sass: permalink: /:categories/:title/ paginate: 5 # amount of posts to show paginate_path: /page:num/ -timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +timezone: America/New_York # Plugins (previously gems:) @@ -286,3 +286,4 @@ defaults: share: true related: true classes: wide + show_date: true diff --git a/_data/navigation.yml b/_data/navigation.yml new file mode 100644 index 0000000..2f671da --- /dev/null +++ b/_data/navigation.yml @@ -0,0 +1,7 @@ +main: + - title: "About" + url: /about/ + - title: "Tags" + url: /tags/ + - title: "Categories" + url: /categories/ diff --git a/_pages/about.md b/_pages/about.md new file mode 100644 index 0000000..711ce70 --- /dev/null +++ b/_pages/about.md @@ -0,0 +1,13 @@ +--- +layout: single +title: About +permalink: /about/ +--- + +I love Linux, open-source, and technology in general. + +This blog was built using [Jekyll](https://jekyllrb.com/) and the [Minimal Mistakes](https://github.com/mmistakes/minimal-mistakes) theme. All updates and tweaks can be followed on by GitHub repo linked in the sidebar. + +I'm not very active on social media, but feel free to email me or leave a comment if you want to get in touch. You'll likely receive a quick response as I jump on any opportunity to talk tech. + +Thanks and Happy Hacking! \ No newline at end of file diff --git a/_pages/categories.md b/_pages/categories.md new file mode 100644 index 0000000..f2b94c7 --- /dev/null +++ b/_pages/categories.md @@ -0,0 +1,5 @@ +--- +layout: categories +title: Categories +permalink: /categories/ +--- \ No newline at end of file diff --git a/_pages/tags.md b/_pages/tags.md new file mode 100644 index 0000000..7634498 --- /dev/null +++ b/_pages/tags.md @@ -0,0 +1,5 @@ +--- +layout: tags +title: Tags +permalink: /tags/ +--- \ No newline at end of file