rsstootalizer/static/templates/Dashboard.html

35 lines
757 B
HTML
Raw Normal View History

2017-04-21 14:56:24 +00:00
<TMPL_INCLUDE NAME='_header.html'>
<TMPL_INCLUDE NAME='_navbar.html'>
<div class="container-fluid">
<div class="row">
<TMPL_INCLUDE NAME='_sidebar.html'>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h2 class="sub-header">Your account</h2>
<div class="row placeholders">
<h4>Foo</h4>
<span class="text-muted">Bar</span>
</div>
<h2 class="sub-header">Your feeds</h2>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>http://...</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<TMPL_INCLUDE NAME='_footer.html'>