From 5ad5f9b5fdf60b127fe8631fc17647ed6edd0f5f Mon Sep 17 00:00:00 2001 From: Ari <47926823+AryanAb@users.noreply.github.com> Date: Mon, 8 Jan 2024 01:39:47 -0500 Subject: [PATCH] Blog in documentation website (#318) * Added a basic blog * Removed AdiDoks from a submodule * Removed extra config file * Placed the AdiDoks content back in a submodule * Updated dates on blog post --- .gitmodules | 2 +- docs/content/_index.md | 6 +++++ docs/content/blog/_index.md | 11 +++++++++ docs/content/blog/introducing-shrs/index.md | 26 +++++++++++++++++++++ 4 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 docs/content/blog/_index.md create mode 100644 docs/content/blog/introducing-shrs/index.md diff --git a/.gitmodules b/.gitmodules index 712a0c60..87035716 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "docs/themes/adidoks"] path = docs/themes/adidoks - url = https://github.com/shellrs/adidoks.git + url = https://github.com/shellrs/adidoks diff --git a/docs/content/_index.md b/docs/content/_index.md index 45e7dc97..2951eeb2 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -18,6 +18,12 @@ section = "docs" url = "/docs/getting-started/introduction/" weight = 10 +[[extra.menu.main]] +name = "blog" +section = "blog" +url = "/blog" +weight = 5 + [[extra.list]] title = "🛠️ Hackable" content = "Fully configurable and extensible in Rust" diff --git a/docs/content/blog/_index.md b/docs/content/blog/_index.md new file mode 100644 index 00000000..813a645b --- /dev/null +++ b/docs/content/blog/_index.md @@ -0,0 +1,11 @@ ++++ +title = "Blog" +description = "shrs blog" +date = 2024-12-27T08:00:00+00:00 +updated = 2024-12-27T08:00:00+00:00 +sort_by = "date" +weight = 1 +page_template = "blog/page.html" +template = "blog/section.html" +paginate_by = 5 ++++ diff --git a/docs/content/blog/introducing-shrs/index.md b/docs/content/blog/introducing-shrs/index.md new file mode 100644 index 00000000..2b39a398 --- /dev/null +++ b/docs/content/blog/introducing-shrs/index.md @@ -0,0 +1,26 @@ +--- +title: "Introducing shrs" +url: "/blog/doks-1/" +description: "Introducing shrs, the hackable shell built using Rust." +summary: "Introducing shrs, the hackable shell built using Rust." +date: 2024-01-07 +lastmod: 2024-01-07 +draft: false +weight: 50 +categories: [] +tags: [] +pinned: false +homepage: false +extra: + authors: + - name: "Aryan" + href: "https://aryabed.com" +--- + +shrs is an open source shell toolkit built in Rust. The project aims to be developer friendly and easily customizable. + +![showcase example of shrs](https://github.com/MrPicklePinosaur/shrs/raw/master/media/demo.gif) + +To get started on using shrs, visit the [shrs book](http://127.0.0.1:1111/docs/getting-started/introduction/) on this website. The Getting Started section covers the basic and also includes an example shell. + +The tool is currently under active development. If you would like to contribute to the project, do not hesitate to check out the [GitHub repository](https://github.com/MrPicklePinosaur/shrs).