diff --git a/db/meta.json b/db/meta.json index 2aae88d..ae53b19 100644 --- a/db/meta.json +++ b/db/meta.json @@ -1,6 +1,8 @@ { "about-id": 2, "base-url": "https://www.stranger.systems", + "header-links": [ + ], "placeholder-id": 0, "tagline": "Making software better by making it weird", "title": "Stranger Systems" diff --git a/lib/DB/BlogMeta.rakumod b/lib/DB/BlogMeta.rakumod index a5a1fd2..83b70d9 100644 --- a/lib/DB/BlogMeta.rakumod +++ b/lib/DB/BlogMeta.rakumod @@ -1,6 +1,7 @@ use v6.e.PREVIEW; use JSON::Class:auth; +use DB::HeaderLink; # Top level metadata for the blog unit class BlogMeta is json(:pretty); @@ -17,6 +18,9 @@ has Int:D $.placeholder-id is rw = 0; #| The id of the about post has Int:D $.about-id is rw = 0; +#| Optional list of extra header links +has HeaderLink:D @.header-links is rw = []; + #| The base url of this post has Str:D $.base-url is required; diff --git a/lib/DB/HeaderLink.rakumod b/lib/DB/HeaderLink.rakumod new file mode 100644 index 0000000..e33b3dd --- /dev/null +++ b/lib/DB/HeaderLink.rakumod @@ -0,0 +1,10 @@ +use v6.e.PREVIEW; + +use JSON::Class:auth; + +# Additional header links +unit class HeaderLink is json(:pretty); + +has Str:D $.link is required is rw; + +has Str $.icon is rw;