Initial commit of content.

This commit is contained in:
2021-01-13 11:25:45 -08:00
commit 9b8760fd34
67 changed files with 25486 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
module.exports = {
extend: 'apostrophe-widgets',
label: 'Test',
addFields: [
{
type: 'array',
name: 'columnns',
label: 'Columns',
required: true,
schema: [
{
name: "twelfths",
type: "integer",
label: "Twelfths",
required: true
}
]
}
]
};

View File

@@ -0,0 +1,7 @@
<div class="container">
<div class="row" style="min-height: 100px">
<% for column in Columns %>
<div class="col-sm-{{ column.twelfths }}" style="background-color: blue"></div>
<% endfor %>
</div>
</div>