diff options
| author | Jesse Morgan <jesse@jesterpm.net> | 2013-06-09 17:35:48 -0700 | 
|---|---|---|
| committer | Jesse Morgan <jesse@jesterpm.net> | 2013-06-09 17:35:48 -0700 | 
| commit | 69e2512750dd75fce43a21226979996c3cd7da1d (patch) | |
| tree | 691dca375161583393ce32bb0869cb7449255118 /src/templates/macros | |
| parent | f4c2eb2dafbca580319a9f50ef4f5dd68d658702 (diff) | |
Configuration Changes
Fixing a bug in the config class and updating all templates and pages to
use the dynamicRoot and staticRoot config values to prefix URLs.
Diffstat (limited to 'src/templates/macros')
| -rw-r--r-- | src/templates/macros/common-page.ftl | 6 | ||||
| -rw-r--r-- | src/templates/macros/noticebox.ftl | 2 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/src/templates/macros/common-page.ftl b/src/templates/macros/common-page.ftl index 1a5c3d3..5fa2740 100644 --- a/src/templates/macros/common-page.ftl +++ b/src/templates/macros/common-page.ftl @@ -4,9 +4,9 @@      <head>          <title>Grow Process</title> -        <link rel="stylesheet" href="${contentroot}/style.css" /> -        <script src="${contentroot}/scripts/jquery.min.js"></script> -        <script src="${contentroot}/scripts/growth.js"></script> +        <link rel="stylesheet" href="${staticRoot}/style.css" /> +        <script src="${staticRoot}/scripts/jquery.min.js"></script> +        <script src="${staticRoot}/scripts/growth.js"></script>      </head>      <body>      <div id="notfooter"> diff --git a/src/templates/macros/noticebox.ftl b/src/templates/macros/noticebox.ftl index 43c36c3..eca1428 100644 --- a/src/templates/macros/noticebox.ftl +++ b/src/templates/macros/noticebox.ftl @@ -1,7 +1,7 @@  <#macro noticebox>      <div id="middlebar">          <div id="noticebox"> -            <img class="icon" src="${contentroot}/images/noticeicon.png"> +            <img class="icon" src="${staticRoot}/images/noticeicon.png">              <p>                  <#nested>              </p>  | 
