mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
Template.post_title.helpers({
|
|
postLink: function(){
|
|
return !!this.url ? Posts.getOutgoingUrl(this.url) : "/posts/"+this._id;
|
|
},
|
|
postTarget: function() {
|
|
return !!this.url ? '_blank' : '';
|
|
}
|
|
});
|