blob: bd41b18fd1ee98fc31c6cd15533afb59d953ec0e [file] [log] [blame]
load("//tools/gostatic:rules.bzl", "gostatic_tarball")
gostatic_tarball(
name = "example",
srcs = [
"src/blog.atom",
"src/blog/first.md",
"src/index.html",
"src/static/style.css",
],
extra_config = """
TITLE = Example Site
URL = https://example.com
AUTHOR = Your Name
blog/*.md:
config
ext .html
directorify
tags tags/*.tag
markdown
template post
template page
*.tag: blog/*.md
ext .html
directorify
template tag
markdown
template page
blog.atom: blog/*.md
inner-template
index.html: blog/*.md
config
inner-template
template page
""",
source_dir = "src",
templates = [
"site.tmpl",
],
)