tangled
alpha
login
or
join now
ericwood.org
/
photos-site
1
fork
atom
A little app to serve my photography from my personal website
1
fork
atom
overview
issues
pulls
pipelines
fix template autoreload
ericwood.org
3 months ago
f4796979
3f09342f
0/0
Waiting for spindle ...
+3
1 changed file
expand all
collapse all
unified
split
src
templates.rs
+3
src/templates.rs
reviewed
···
20
20
if should_autoreload {
21
21
let template_path = Path::new("templates");
22
22
notifier.watch_path(template_path, true);
23
23
+
24
24
+
let views_path = Path::new("src/views");
25
25
+
notifier.watch_path(views_path, true);
23
26
}
24
27
env.add_function("url_escape", url_escape);
25
28
env.add_function("inline_style", inline_style);