generator-nrs-plugin
Version:
This Yeoman generator helps you get started building a NRS plugin for the NXT network.
50 lines (48 loc) • 2.3 kB
HTML
<div id="p_<%= pluginName %>_page" class="page">
<section class="content-header">
<h1>The is the <%= pluginName %> plugin</h1>
</section>
<section class="content">
<div class="row">
<!-- First Chart -->
<div class="col-md-12">
<div class="box box-primary" style="min-height:300px;max-height: 600px;overflow: none;;">
<div class="box-header">
<h3 class="box-title"><span>Yeah!!! You have made a plugin!</span></h3>
</div>
<div class="box-body no-padding">
<div class="data-container" data-no-padding="true" style="display: block;">
<div>
<div id="content" style="display: inline-block;" class="<%= pluginName %>">
<p>Just for fun, here is your accountRS:</p>
<span id="your_account"></span>
<br/>
<p>You now need to change a few things to make this plugin a little more interesting, and then don´t forget to share it to the world!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="data-container data-loading">
<table class="table table-striped table-hover" id="p_<%= pluginName %>_table">
<thead>
<tr>
<th>Field Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="data-loading-container"><img src="img/loading_indicator.gif" alt="Loading..." width="32" height="32" /></div>
<div class="data-empty-container">
<p>No data loaded.</p>
</div>
</div>
<p style="font-size:12px;">
<b>Last update:</b> <span id="p_<%= pluginName %>_startup_date_time" style="font-style:italic;"></span>
</p>
</section>
</div>