<%include "main.gsp"%> - <% content.myPosts = published_posts.findAll{it.author=='Bertram Fey'} %> + <% content.myPosts = published_posts.findAll{it.author.contains(content.author)} %> + <% + def allTags = [] + content.myPosts.each { post -> + allTags += post.tags + } + def tags = [] + allTags.unique().forEach { tag -> + tags += "$tag" + } + out << tags.join(' ') + %> <%include "posts.gsp"%> - <% if (config.site_issueUrl && config.site_feedbackForm != 'false') {%> - <%include "feedback.gsp" %> - <% } %> -
${alltags}