You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
370 B
Zig

const std = @import("std");
const zine = @import("zine");
pub fn build(b: *std.Build) !void {
try zine.addWebsite(b, .{
.title = "the codeartist — programmer and engineer based in Berlin",
.host_url = "https://koehr.ing",
.layouts_dir_path = "layouts",
.content_dir_path = "content",
.static_dir_path = "static",
});
}