- Updated navigation links across multiple blog pages to replace "Index" with "Home" and added "Contact" link. - Created a new contact page with a form for user inquiries. - Added a new contact template to render the contact page content. - Updated blog index page to enhance structure and styling. - Added a contact markdown file for content management.
35 lines
536 B
TOML
35 lines
536 B
TOML
root = "."
|
|
|
|
[build]
|
|
cmd = "go run main.go"
|
|
bin = ""
|
|
delay = 1000
|
|
exclude_dir = ["assets", "tmp", "vendor", "bak", "node_modules", "public"]
|
|
include_ext = ["go", "md", "html"]
|
|
kill_delay = "0s"
|
|
log = "build-errors.log"
|
|
|
|
[color]
|
|
app = ""
|
|
build = "yellow"
|
|
main = "magenta"
|
|
runner = "green"
|
|
watcher = "cyan"
|
|
|
|
[log]
|
|
main_only = false
|
|
silent = false
|
|
time = false
|
|
|
|
[misc]
|
|
clean_on_exit = false
|
|
|
|
[proxy]
|
|
app_port = 0
|
|
enabled = false
|
|
proxy_port = 0
|
|
|
|
[screen]
|
|
clear_on_rebuild = false
|
|
keep_scroll = true
|