mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
issue #245
hbs templates not building with correct paths missed a couple of assets paths in settings
This commit is contained in:
parent
7381c52f24
commit
3d3d42bd7c
2 changed files with 5 additions and 5 deletions
|
@ -127,7 +127,7 @@ var path = require('path'),
|
|||
options: {
|
||||
namespace: "JST",
|
||||
processName: function (filename) {
|
||||
filename = filename.replace('./core/client/tpl/', '');
|
||||
filename = filename.replace('core/client/tpl/', '');
|
||||
return filename.replace('.hbs', '');
|
||||
}
|
||||
},
|
||||
|
|
|
@ -30,13 +30,13 @@
|
|||
|
||||
<label>
|
||||
<b>Blog Logo</b>
|
||||
<img src="/core/client/assets/img/logo.png" alt="logo" height="38" width="381"/>
|
||||
<img src="/public/img/logo.png" alt="logo" height="38" width="381"/>
|
||||
<p>Display a logo on your site in place of blog title</p>
|
||||
</label>
|
||||
|
||||
<label>
|
||||
<b>Blog Icon</b>
|
||||
<img src="/core/client/assets/img/test-icon.png" alt="logo" height="38" width="38"/>
|
||||
<img src="/public/img/test-icon.png" alt="logo" height="38" width="38"/>
|
||||
<p>The icon for your blog, used in your browser tab and elsewhere</p>
|
||||
</label>
|
||||
|
||||
|
@ -184,7 +184,7 @@
|
|||
<ul class="users">
|
||||
<li class="user">
|
||||
<figure class="user-image">
|
||||
<img src="/core/client/assets/img/user.jpg" alt="user"/>
|
||||
<img src="/public/img/user.jpg" alt="user"/>
|
||||
</figure>
|
||||
<section class="user-meta">
|
||||
<h4 class="user-name">Some Name</h4>
|
||||
|
@ -194,7 +194,7 @@
|
|||
</li>
|
||||
<li class="user">
|
||||
<figure class="user-image">
|
||||
<img src="/core/client/assets/img/user.jpg" alt="user"/>
|
||||
<img src="/public/img/user.jpg" alt="user"/>
|
||||
</figure>
|
||||
<section class="user-meta">
|
||||
<h4 class="user-name">Some Name</h4>
|
||||
|
|
Loading…
Add table
Reference in a new issue