diff options
-rw-r--r-- | default.do | 1 | ||||
-rw-r--r-- | index.html.st | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -1,3 +1,4 @@ +#!/bin/sh if test -f $1.st then { shelter.sh $1.st >$3; } 2>&1 | xargs redo-ifchange diff --git a/index.html.st b/index.html.st index a390332..176b0ce 100644 --- a/index.html.st +++ b/index.html.st @@ -1,5 +1,5 @@ -$( { - title="Welcome" - content="Hello, World." +$( + export title="Welcome" + export content="Hello, World." shelter.sh main.st -} ) +) |