blog.show.gsp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of content Show documentation
Show all versions of content Show documentation
A plugin used to manage contents like static pages, menus etc. at one place.
Also provides shortened and user friendly urls.
${entityName }
${blogInstance.title }
${blogInstance.subTitle}
<%= blogInstance.body %>
Comments
Add
Sorry, no comments to display.
var startSize = ${grailsApplication.config.causecode.plugins.content.tags.startSize }
var endSize = ${grailsApplication.config.causecode.plugins.content.tags.endSize }
var startColor = "${grailsApplication.config.causecode.plugins.content.tags.startColor }"
var endColor = "${grailsApplication.config.causecode.plugins.content.tags.endColor }"
$(function () {
$('div.blog-tags a').tagcloud({
size: {start: parseInt(startSize), end: parseInt(endSize), unit:'px'},
color: {start: "#"+startColor, end: "#"+endColor}
});
});