diff options
Diffstat (limited to 'r7r_repo/templates/src')
-rw-r--r-- | r7r_repo/templates/src/common.html | 16 | ||||
-rw-r--r-- | r7r_repo/templates/src/home.html | 3 | ||||
-rw-r--r-- | r7r_repo/templates/src/master.html | 1 |
3 files changed, 20 insertions, 0 deletions
diff --git a/r7r_repo/templates/src/common.html b/r7r_repo/templates/src/common.html new file mode 100644 index 0000000..2600e8d --- /dev/null +++ b/r7r_repo/templates/src/common.html @@ -0,0 +1,16 @@ +<ste:mktag name="default_error"> + <ste:if> + $error + <ste:then> + <div class="error"><ste:escape>$error</ste:escape></div> + </ste:then> + </ste:if> +</ste:mktag> +<ste:mktag name="default_success"> + <ste:if> + $success + <ste:then> + <div class="success"><ste:escape>$success</ste:escape></div> + </ste:then> + </ste:if> +</ste:mktag> diff --git a/r7r_repo/templates/src/home.html b/r7r_repo/templates/src/home.html index bf9623a..15d8051 100644 --- a/r7r_repo/templates/src/home.html +++ b/r7r_repo/templates/src/home.html @@ -1,5 +1,8 @@ <ste:load name="master.html" /> <ste:block name="content"> + <ste:default_error /> + <ste:default_success /> + <h2>Latest Packages</h2> <table class="listtab fullwidth"> <thead> diff --git a/r7r_repo/templates/src/master.html b/r7r_repo/templates/src/master.html index a2dbd58..9e9b8df 100644 --- a/r7r_repo/templates/src/master.html +++ b/r7r_repo/templates/src/master.html @@ -3,6 +3,7 @@ <a href="${rel_path_to_root}${_tag_parameters[path]}"><ste:tagcontent /></a> </li> </ste:mktag> +<ste:load name="common.html" /> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> |