nav bar and search

This commit is contained in:
2020-09-29 18:25:34 -04:00
parent d92dfdc6b6
commit 5dac24093a
5 changed files with 37 additions and 6 deletions

View File

@@ -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

7
_data/navigation.yml Normal file
View File

@@ -0,0 +1,7 @@
main:
- title: "About"
url: /about/
- title: "Tags"
url: /tags/
- title: "Categories"
url: /categories/

13
_pages/about.md Normal file
View File

@@ -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!

5
_pages/categories.md Normal file
View File

@@ -0,0 +1,5 @@
---
layout: categories
title: Categories
permalink: /categories/
---

5
_pages/tags.md Normal file
View File

@@ -0,0 +1,5 @@
---
layout: tags
title: Tags
permalink: /tags/
---