Back

Pull Latest Vimeo Video

Description

This code will pull the description, image and title of your latest Vimeo video and put it into your page. Vimeo feeds are more well-formatted than some other social media services and don't need any special "find and replace" manipulation.

Code

#set($rssTotal = 1)

## Replace "okchristian" with your own Vimeo account

#pullRSSFeed("http://vimeo.com/okchristian/videos/rss")
#foreach($content in $list)
	<h3><a href="$!content.link">$!content.title</a></h3>
	<p>$!content.description</p>
#end