2025-01-22 19:55:18 -05:00
|
|
|
use v6.e.PREVIEW;
|
|
|
|
|
|
|
|
use JSON::Class:auth<zef:vrurg>;
|
|
|
|
|
|
|
|
# Top level metadata for the blog
|
2025-02-02 17:57:27 -05:00
|
|
|
unit class BlogMeta is json(:pretty);
|
|
|
|
|
|
|
|
#| The title of the blog
|
|
|
|
has Str:D $.title is required is rw;
|
2025-01-22 19:55:18 -05:00
|
|
|
|
|
|
|
#| The tagline of the blog
|
2025-02-02 17:57:27 -05:00
|
|
|
has Str:D $.tagline is required is rw;
|
|
|
|
|
|
|
|
#| The id of the placeholder post
|
|
|
|
has Int:D $.placeholder-id is rw = 0;
|
2025-02-05 03:26:39 -05:00
|
|
|
|
|
|
|
#| The id of the about post
|
|
|
|
has Int:D $.about-id is rw = 0;
|