Last active
August 31, 2019 05:17
-
-
Save jsdecena/4e673205d13274474974324e95aaa2af to your computer and use it in GitHub Desktop.
LandingPage.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="main"> | |
<nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0"> | |
<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">Electron CMS</a> | |
<input class="form-control form-control-dark w-100" type="text" placeholder="Search" aria-label="Search"> | |
<ul class="navbar-nav px-3"> | |
<li class="nav-item text-nowrap"> | |
<a class="nav-link" href="#">Sign out</a> | |
</li> | |
</ul> | |
</nav> | |
<div class="container-fluid"> | |
<div class="row"> | |
<nav class="col-md-2 d-none d-md-block bg-light sidebar"> | |
<div class="sidebar-sticky"> | |
<ul class="nav flex-column"> | |
<li class="nav-item"> | |
<a class="nav-link active" href="#"> | |
<span data-feather="home"></span> | |
Posts <span class="sr-only">(current)</span> | |
</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#"> | |
<span data-feather="home"></span> | |
Pages <span class="sr-only">(current)</span> | |
</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#"> | |
<span data-feather="home"></span> | |
Users <span class="sr-only">(current)</span> | |
</a> | |
</li> | |
</ul> | |
</div> | |
</nav> | |
<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4"> | |
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pb-2 mb-3 border-bottom"> | |
</div> | |
<h2>Posts</h2> | |
<div class="table-responsive"> | |
<table class="table table-striped table-sm"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>Title</th> | |
<th>Body</th> | |
<th></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>10101</td> | |
<td>Lorem</td> | |
<td>ipsum</td> | |
<td>Actions</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</main> | |
</div> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment