+<div class="rng-module-nodePane">\r
+ <fieldset>\r
+ <legend>Current node</legend>\r
+ <div>\r
+ <label>Tag</label>\r
+ <select class="rng-module-nodePane-tagSelect">\r
+ <% var options = ['', 'section', 'header', 'div', 'span', 'aside']; %>\r
+ <% options.forEach(function(option) { %>\r
+ <option value="<%= option %>" <% if(option === '') { %>selected<% } %>><%= option %></option>\r
+ <% }); %>\r
+ </select>\r
+ </div>\r
+ <div>\r
+ <label>Klasa</label>\r
+ <select class="rng-module-nodePane-classSelect">\r
+ <% var options = ['', 'author', 'title', 'cite', 'cite.code', 'cite.code.xml', 'list', 'list.items', 'item', 'uri', 'p', 'footnote', 'todo', 'emp', 'emph.tech'] %>\r
+ <% options.forEach(function(option) { %>\r
+ <option value="<%= option.replace(/\./g, '-') %>" <% if(option === '') { %>selected<% } %>><%= option %></option>\r
+ <% }); %>\r
+ </select>\r
+ </div>\r
+ </fieldset>\r
+</div>
\ No newline at end of file