--- layout : 'default' css : 'custom' title : 'Download' type : 'Semantic' --- <% uiElements = @getCollection("uiElements").toJSON() %> <% uiCollections = @getCollection("uiCollections").toJSON() %> <% uiViews = @getCollection("uiViews").toJSON() %> <% uiModules = @getCollection("uiModules").toJSON() %> <%- @partial('header') %>

Configurations

Pro
LESS + Build System
Basic
CSS Only
Choosing a package

Semantic is designed to be used as part of a front-end build system like Grunt or Gulp so that you can modify themes, site-specific variables, and UI overrides during development.

Components

Select All Elements

<% for element in uiElements: %>
<%= element.title %> <% if element.status?: %> <% end %>
<%= element.description %>
<% end %>

Select All Collections

<% for collection in uiCollections: %>
<%= collection.title %> <% if collection.status?: %> <% end %>
<%= collection.description %>
<% end %>

Select All Views

<% for view in uiViews: %>
<%= view.title %> <% if view.status?: %> <% end %>
<%= view.description %>
<% end %>

Select All Modules

<% for module in uiModules: %>
<%= module.title %> <% if module.status?: %> <% end %>
<%= module.description %>
<% end %>