export default Em.Component.extend({ tagName: 'a', attributeBindings: ['href'], href: function() { return Discourse.getURL('/c/') + Discourse.Category.slugFor(this.get('category')); }.property(), render(buffer) { const categoryLogo = this.get('category.logo_url'); buffer.push(``); } });