Blog Roll

The Blog Roll macro displays a list of spaces that contain blog posts.

Usage

Storage Format

<ac:macro ac:name="blog-roll"> <ac:parameter ac:name="parameter">value</ac:parameter> </ac:macro>

Wiki Markup

{blog-roll:parameter=value}
ParameterNameDescriptionTypeDefaultRequired

space

Space

The list of spaces to search for posts in

spacekey


label

Label

Only display posts with one of the listed labels

string


author

Author

Only display posts by the named authors

string


count

Count

The number of posts to display

string


none

None

The text to display when no posts are found

string


class

CSS Class

The CSS class to add to the outer list

string


flag

Flag

A list of flags, one of which must be defined for the content to be displayed

string


notflag

Not Flag

A list of flags that must not be defined for the content to be displayed

string


Basic Example

Below is an example of displaying a list of all spaces that have blog posts.

<ac:macro ac:name="blog-roll" /> {blog-roll}

Result

Advanced Example

Below is an example of displaying a list of spaces with blog posts by a particular author.

<ac:macro ac:name="blog-roll"> <ac:parameter ac:name="author">felix</ac:parameter> </ac:macro> {blog-roll:author=felix}

Result

On this page