feat: embedded content incl. rendering; simple layout with nav-bar
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m1s
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m1s
This commit is contained in:
12
build.zig
12
build.zig
@@ -17,6 +17,18 @@ pub fn build(b: *std.Build) void {
|
||||
.optimize = optimize,
|
||||
.imports = &.{
|
||||
.{ .name = "zterm", .module = zterm.module("zterm") },
|
||||
.{
|
||||
.name = "about",
|
||||
.module = b.createModule(.{
|
||||
.root_source_file = b.path("doc/about.md"),
|
||||
}),
|
||||
},
|
||||
.{
|
||||
.name = "blog",
|
||||
.module = b.createModule(.{
|
||||
.root_source_file = b.path("doc/blog.md"),
|
||||
}),
|
||||
},
|
||||
},
|
||||
}),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user