Skip to content

Instantly share code, notes, and snippets.

@davidcalhoun
Created October 26, 2011 16:49
Show Gist options
  • Save davidcalhoun/1316962 to your computer and use it in GitHub Desktop.
Save davidcalhoun/1316962 to your computer and use it in GitHub Desktop.
Mixin example

Mixin definition (Ken Burns)

mixin kenburns(config)
	section
	  .c-kenburns(style='margin: 0 auto')
	    - each img in config.imgs
	      img(src='#{img}')

Mixin usage

include modules/kenburns

mixin kenburns(
	{
		imgs: [
				'http://placekitten.com/g/300/300',
				'http://placekitten.com/300/300',
				'http://placekitten.com/g/300/300',
				'http://placekitten.com/300/300'
		]
	}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment