Header link support

This commit is contained in:
Nathan McCarty 2025-03-15 17:56:00 -04:00
parent 51e50cd0d6
commit a2a811aa4a
7 changed files with 36 additions and 3 deletions

25
blog
View file

@ -3,6 +3,7 @@ use v6.e.PREVIEW;
use DB; use DB;
use DB::BlogMeta; use DB::BlogMeta;
use DB::HeaderLink;
use DB::Series; use DB::Series;
use DB::MarkdownPost; use DB::MarkdownPost;
use DB::IdrisPost; use DB::IdrisPost;
@ -418,6 +419,30 @@ multi MAIN(
$db.write: $db-dir; $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 #| Do a clean build and upload the blog to the remote
multi MAIN( multi MAIN(
"upload", "upload",

View file

@ -2,6 +2,11 @@
"about-id": 2, "about-id": 2,
"base-url": "https://www.stranger.systems", "base-url": "https://www.stranger.systems",
"header-links": [ "header-links": [
{
"icon": "receipt",
"link": "/posts/by-slug/hire-me.html",
"text": "Hire Me"
}
], ],
"placeholder-id": 0, "placeholder-id": 0,
"tagline": "Making software better by making it weird", "tagline": "Making software better by making it weird",

View file

@ -10,4 +10,4 @@
"special": true, "special": true,
"tags": [ "tags": [
] ]
} }

View file

@ -10,4 +10,4 @@
"special": true, "special": true,
"tags": [ "tags": [
] ]
} }

View file

@ -7,4 +7,6 @@ unit class HeaderLink is json(:pretty);
has Str:D $.link is required is rw; has Str:D $.link is required is rw;
has Str:D $.text is required is rw;
has Str $.icon is rw; has Str $.icon is rw;

View file

@ -75,6 +75,6 @@ sub site-header(BlogMeta:D $meta) is export {
header-link 'Series', '/series.html', 'book'; header-link 'Series', '/series.html', 'book';
header-link 'About', '/about.html', 'info-circle'; header-link 'About', '/about.html', 'info-circle';
header-link 'Feed', '/atom.xml', 'rss'; header-link 'Feed', '/atom.xml', 'rss';
]; ], $meta.header-links.map(-> $link {header-link $link.text, $link.link, $link.icon});
] ]
} }

View file

@ -79,6 +79,7 @@ body, .post, .series {
font-size: 1.1rem; font-size: 1.1rem;
flex-wrap: wrap; flex-wrap: wrap;
margin-top: var(--box-margin-vert); margin-top: var(--box-margin-vert);
justify-content: center;
} }
.header-links > a > span, .header-links > a > span,
.post-series-tag > a > span, .post-series-tag > a > span,