iovdin / tagbars

use Meteor templates as html tags

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tagbars

use templates as html tags.

this plugin handles files with .htm extension

<inclusiontemplate/>

<blocktemplate name="value">
some content
</blocktemplate>

<template name="inclusiontemplate">
hello world
</template>

<template name="blocktemplate">
<h> header </h>
<content/>
</template>

becomes

{{>inclusiontemplate}}

{{#blocktemplate name='value'}}
some content
{{/blocktemplate}}

<template name="inclusiontemplate">
hello world
</template>

<template name="blocktemplate">
<h> header </h>
{{> Template.contentBlock}}
</template>

About

use Meteor templates as html tags


Languages

Language:JavaScript 100.0%