Skip to content

Instantly share code, notes, and snippets.

@prinick96
Created August 24, 2015 06:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save prinick96/f24a2154f2316504ce31 to your computer and use it in GitHub Desktop.
Save prinick96/f24a2154f2316504ce31 to your computer and use it in GitHub Desktop.
{include 'overall/header.tpl'}
<body>
{include 'overall/nav.tpl'}
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<li><a href="#">Los mejores</a></li>
<li class="active"><a href="#">Inicio</a></li>
<li><a href="#">Categoria 1</a></li>
<li><a href="#">Categoria 2</a></li>
<li><a href="#">Categoria 3</a></li>
</ul>
</div>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h2 class="sub-header">Inicio</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th style="width: 65%;">Post</th>
<th style="width: 25%;">Autor</th>
<th style="width: 5%;">Puntos</th>
<th style="width: 5%;">Comentarios</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="">Ejemplo</a></td>
<td><a href="">Autor ejemplo</a></td>
<td style="text-align: center;">0</td>
<td style="text-align: center;">0</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
{include 'overall/footer.tpl'}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment