diff options
| author | Blaise Laflamme <blaise@laflamme.org> | 2014-01-03 22:57:25 -0500 |
|---|---|---|
| committer | Blaise Laflamme <blaise@laflamme.org> | 2014-01-03 22:57:25 -0500 |
| commit | 2abf2d04a0fb5dd79eee76c0677b175d0310a388 (patch) | |
| tree | 120e3678a0dab125e06a977fbc57a5f4a9300078 | |
| parent | f1fee9646c88373c6affd5058be91c7c0df4b8a4 (diff) | |
| download | pyramid-2abf2d04a0fb5dd79eee76c0677b175d0310a388.tar.gz pyramid-2abf2d04a0fb5dd79eee76c0677b175d0310a388.tar.bz2 pyramid-2abf2d04a0fb5dd79eee76c0677b175d0310a388.zip | |
fixed package ref
| -rw-r--r-- | pyramid/scaffolds/alchemy/+package+/templates/mytemplate.pt_tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyramid/scaffolds/alchemy/+package+/templates/mytemplate.pt_tmpl b/pyramid/scaffolds/alchemy/+package+/templates/mytemplate.pt_tmpl index 1c2771a0d..f64083aff 100644 --- a/pyramid/scaffolds/alchemy/+package+/templates/mytemplate.pt_tmpl +++ b/pyramid/scaffolds/alchemy/+package+/templates/mytemplate.pt_tmpl @@ -6,7 +6,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="pyramid web application"> <meta name="author" content="Pylons Project"> - <link rel="shortcut icon" href="${request.static_url('pst:static/pyramid-16x16.png')}"> + <link rel="shortcut icon" href="${request.static_url('{{package}}:static/pyramid-16x16.png')}"> <title>Starter Template for The Pyramid Web Framework</title> @@ -14,7 +14,7 @@ <link href="//oss.maxcdn.com/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom styles for this template --> - <link href="${request.static_url('pst:static/theme.css')}" rel="stylesheet"> + <link href="${request.static_url('{{package}}:static/theme.css')}" rel="stylesheet"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> @@ -29,7 +29,7 @@ <div class="container"> <div class="row"> <div class="col-md-2"> - <img class="logo img-responsive" src="${request.static_url('pst:static/pyramid.png')}" alt="pyramid web framework"> + <img class="logo img-responsive" src="${request.static_url('{{package}}:static/pyramid.png')}" alt="pyramid web framework"> </div> <div class="col-md-10"> <div class="content"> |
