blob: bd41b18fd1ee98fc31c6cd15533afb59d953ec0e [file] [log] [blame]
Serge Bazanski49154252020-10-24 20:22:08 +02001load("//tools/gostatic:rules.bzl", "gostatic_tarball")
2
3gostatic_tarball(
4 name = "example",
Serge Bazanski97b5cd72023-07-28 17:14:50 +00005 srcs = [
6 "src/blog.atom",
7 "src/blog/first.md",
8 "src/index.html",
9 "src/static/style.css",
Serge Bazanski49154252020-10-24 20:22:08 +020010 ],
Serge Bazanski49154252020-10-24 20:22:08 +020011 extra_config = """
12TITLE = Example Site
13URL = https://example.com
14AUTHOR = Your Name
15
16blog/*.md:
17 config
18 ext .html
19 directorify
20 tags tags/*.tag
21 markdown
22 template post
23 template page
24
25*.tag: blog/*.md
26 ext .html
27 directorify
28 template tag
29 markdown
30 template page
31
32blog.atom: blog/*.md
33 inner-template
34
35index.html: blog/*.md
36 config
37 inner-template
38 template page
39
40 """,
Serge Bazanski97b5cd72023-07-28 17:14:50 +000041 source_dir = "src",
42 templates = [
43 "site.tmpl",
Serge Bazanski49154252020-10-24 20:22:08 +020044 ],
45)