Last active
October 8, 2019 06:28
-
-
Save CryDeTaan/7c6f75378b22c50d93aad78187ebaee1 to your computer and use it in GitHub Desktop.
Gist for medium post
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> | |
<!-- Content Header (Page header) --> | |
<div class="content-header"> | |
<div class="container-fluid"> | |
<div class="row mb-2"> | |
<div class="col-sm-6"> | |
<h1 class="m-0 text-dark">Something New</h1> | |
</div><!-- /.col --> | |
<div class="col-sm-6"> | |
<ol class="breadcrumb float-sm-right"> | |
<li class="breadcrumb-item"><a href="#">Home</a></li> | |
<li class="breadcrumb-item active">Something New</li> | |
</ol> | |
</div><!-- /.col --> | |
</div><!-- /.row --> | |
</div><!-- /.container-fluid --> | |
</div> | |
<!-- /.content-header --> | |
<!-- Main content --> | |
<div class="content"> | |
<div class="container-fluid"> | |
<p>Something New</p> | |
</div> | |
<!-- /.container-fluid --> | |
</div> | |
<!-- /.content --> | |
</div> | |
</template> | |
<script> | |
// VueJS components will run here. | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment