0.0.8 • Published 9 years ago

foobars v0.0.8

Weekly downloads
26
License
-
Repository
github
Last release
9 years ago

FooBars

Small and fast coffeescript template library. Works as express middleware.

To parse:

FooBars = require('FooBars').parse

FooBars('PATH_TO_FILE.html',{
  myData:'Goes Here',
  can:function(){
    'also be a function'
  }
},optionalCallback)

FooBars will run callback with 2 paramaters. Error and HTML. If no callback is supplies, FooBars will return data in a Synchronous fassion.

Template Syntax:

###Sample data to be passed

{
  a:function(){return 'a'},
  b:function(){return 'b'},
  friends:['Jonnie', 'Matt']
}

###If

<if 'a' == a() || function(){ return 'a' }>
  <h1>Turns out 'a' is equal to 'a'</h1>
</if>
<h1>Turns out 'a' is qual to 'a'</h1>

###Each

<each of='this.friends'>
  <h1>I like {{name}}, he is my friend.</h1>
</each>
<h1>I like Jonnie, he is my friend.</h1>
<h1>I like Matt, he is my friend.</h1>

###Templates

<template name='home'>
  <h1>Template Code</h1>
</template>


<show name='home'></show> <!-- Load Template -->
0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago