forked from hswaw/hscloud
This rips out the existing HTML and CSS. In the end, we're not going to use it. In its place, it adds a simplistic landing page, hoping to gather more attention and curiosity from other hackers that would like to make it prettier. Change-Id: I322b071a8510536bd6aad9252ae7aa8fe3a734bc
18 lines
418 B
Text
18 lines
418 B
Text
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 = [
|
|
"index.html",
|
|
],
|
|
package = "templates",
|
|
)
|
|
|
|
# keep
|
|
go_library(
|
|
name = "templates_go",
|
|
srcs = [":templates"],
|
|
importpath = "code.hackerspace.pl/hscloud/hswaw/site/templates",
|
|
visibility = ["//visibility:public"],
|
|
)
|