// Template for display data JSON object | |
template(name="channels") | |
with data | |
if params.error | |
+channels_error | |
.row | |
.col.s12 | |
| Channels Forms Goes Here | |
template(name="channels_error") | |
.row | |
.col.s10.offset-s1.m8.offset-m2 | |
.card.blue-grey.lighten-2 | |
.card-content.white-text.flow-text | |
span.card-title | |
| Error! | |
p | |
| There was an error while modifying this channel. We are looking into this error and should have it fixed shortly. Please try again later. | |
.card-action | |
a.waves-effect.waves-white.btn | |
| Ok | |
// JS For returning data | |
Template.channels.helpers({ | |
// Generate all of the data needed for this component | |
data: function() { | |
data = {}; | |
return data; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment