blob: cc473534cecf08c167ab83a2ed24087a41c0db36 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//extras:embed_data.bzl", "go_embed_data")
go_embed_data(
name = "templates",
srcs = [
"about.html",
"about_en.html",
"basic.html",
"main.html",
"subscribe.html",
"subscribe_en.html",
],
package = "templates",
)
# keep
go_library(
name = "templates_go",
srcs = [":templates"],
importpath = "code.hackerspace.pl/hscloud/hswaw/site/templates",
visibility = ["//visibility:public"],
)