blob: 58da1eaaab191062439d484fae501f83382a57d0 [file] [log] [blame]
Serge Bazanskia7674672021-05-30 21:09:34 +00001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2load("@io_bazel_rules_go//extras:embed_data.bzl", "go_embed_data")
3
4go_embed_data(
5 name = "templates",
6 srcs = [
7 "about.html",
8 "about_en.html",
9 "basic.html",
10 "header.html",
11 "main.html",
12 "rotimate_at.html",
13 "subscribe.html",
14 "subscribe_en.html",
15 ],
16 package = "templates",
17)
18
19# keep
20go_library(
21 name = "templates_go",
22 srcs = [":templates"],
23 importpath = "code.hackerspace.pl/hscloud/hswaw/site/templates",
24 visibility = ["//visibility:public"],
25)