diff --git a/blog b/blog index c0af5b8..3f5a5ed 100755 --- a/blog +++ b/blog @@ -3,6 +3,7 @@ use v6.e.PREVIEW; use DB; use DB::BlogMeta; +use DB::HeaderLink; use DB::Series; use DB::MarkdownPost; use DB::IdrisPost; @@ -418,6 +419,30 @@ multi MAIN( $db.write: $db-dir; } +#| Add a header link +multi MAIN( + "header-link", + "add", + #| The path of the database directory + IO::Path(Str) :$db-dir = $default-db-dir, +) { + my $db = read-db $db-dir; + print "Link Text: "; + my $text = get; + print "Link Location: "; + my $link = get; + print "Icon: "; + my $icon = get; + + my $header-link = + HeaderLink.new: + text => $text, link => $link, icon => $icon; + + $db.meta.header-links.push: $header-link; + + $db.write: $db-dir; +} + #| Do a clean build and upload the blog to the remote multi MAIN( "upload", diff --git a/db/meta.json b/db/meta.json index ae53b19..444c9f0 100644 --- a/db/meta.json +++ b/db/meta.json @@ -2,6 +2,11 @@ "about-id": 2, "base-url": "https://www.stranger.systems", "header-links": [ + { + "icon": "receipt", + "link": "/posts/by-slug/hire-me.html", + "text": "Hire Me" + } ], "placeholder-id": 0, "tagline": "Making software better by making it weird", diff --git a/db/posts/2.json b/db/posts/2.json index 7d0c93b..67b06ee 100644 --- a/db/posts/2.json +++ b/db/posts/2.json @@ -10,4 +10,4 @@ "special": true, "tags": [ ] -} +} \ No newline at end of file diff --git a/db/posts/6.json b/db/posts/6.json index f4b3c3b..b64a656 100644 --- a/db/posts/6.json +++ b/db/posts/6.json @@ -10,4 +10,4 @@ "special": true, "tags": [ ] -} +} \ No newline at end of file diff --git a/lib/DB/HeaderLink.rakumod b/lib/DB/HeaderLink.rakumod index e33b3dd..815009a 100644 --- a/lib/DB/HeaderLink.rakumod +++ b/lib/DB/HeaderLink.rakumod @@ -7,4 +7,6 @@ unit class HeaderLink is json(:pretty); has Str:D $.link is required is rw; +has Str:D $.text is required is rw; + has Str $.icon is rw; diff --git a/lib/Render/Head.rakumod b/lib/Render/Head.rakumod index dc9f2ef..98e9a55 100644 --- a/lib/Render/Head.rakumod +++ b/lib/Render/Head.rakumod @@ -75,6 +75,6 @@ sub site-header(BlogMeta:D $meta) is export { header-link 'Series', '/series.html', 'book'; header-link 'About', '/about.html', 'info-circle'; header-link 'Feed', '/atom.xml', 'rss'; - ]; + ], $meta.header-links.map(-> $link {header-link $link.text, $link.link, $link.icon}); ] } diff --git a/resources/main.css b/resources/main.css index 2798174..2290586 100644 --- a/resources/main.css +++ b/resources/main.css @@ -79,6 +79,7 @@ body, .post, .series { font-size: 1.1rem; flex-wrap: wrap; margin-top: var(--box-margin-vert); + justify-content: center; } .header-links > a > span, .post-series-tag > a > span,