diff --git a/docs/index.md b/docs/index.md index 44a4dbb..4028f83 100644 --- a/docs/index.md +++ b/docs/index.md @@ -49,7 +49,6 @@ Need a little help getting started? We're here! Look for the [#tinkerbell] channel. - Submit an issue on [Github]. - [boots]: services/boots.md [pbnj]: services/pbnj.md [hook]: hook.md diff --git a/mkdocs.yml b/mkdocs.yml index f45d571..8f2346f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ site_name: Tinkerbell Docs site_url: https://docs.tinkerbell.org site_description: Designed for scalable provisioning of physical hardware, Tinkerbell is both open-source and cloud native. Contributed by Equinix Metal. -# site_image: https://tinkerbell.org/images/social/tinkerbell-social-image.png +site_image: https://tinkerbell.org/images/social/tinkerbell-social-image.png repo_url: https://github.com/tinkerbell/tinkerbell-docs edit_uri: "edit/main/docs/" diff --git a/overrides/partials/nav.html b/overrides/partials/nav.html index 1b6b50d..abeb2be 100644 --- a/overrides/partials/nav.html +++ b/overrides/partials/nav.html @@ -20,8 +20,11 @@
{% include "partials/source.html" %}
{% endif %} + {% import "partials/nav-item.html" as item with context %} diff --git a/shell.nix b/shell.nix index 9ef73cf..e58fd0b 100644 --- a/shell.nix +++ b/shell.nix @@ -2,11 +2,13 @@ let _pkgs = import { }; in { pkgs ? import (_pkgs.fetchFromGitHub { owner = "NixOS"; repo = "nixpkgs"; - #branch@date: 21.11@2021-12-02 - rev = "21.11"; - sha256 = "sha256-AjhmbT4UBlJWqxY0ea8a6GU2C2HdKUREkG43oRr3TZg="; + #branch@date: 23.11@2023-11-29 + rev = "23.11"; + sha256 = "1ndiv385w1qyb3b18vw13991fzb9wg4cl21wglk89grsfsnra41k"; }) { } }: with pkgs; -mkShell { buildInputs = [ nodePackages.prettier python3Packages.poetry ]; } +mkShell { + buildInputs = [ nodePackages.prettier pkgs.poetry pkgs.python38]; +}