-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,120 additions
and
1,931 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM nginx:alpine | ||
|
||
# Copy app source to work directory | ||
COPY ./dist /usr/share/nginx/html |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
<template> | ||
<section class="au-animate"> | ||
<div class="container-fluid au-animate"> | ||
<h2>${heading}</h2> | ||
<div> | ||
<div class="col-md-2"> | ||
<ul class="well nav nav-pills nav-stacked"> | ||
<li repeat.for="row of router.navigation" class="${row.isActive ? 'active' : ''}"> | ||
<a href.bind="row.href">${row.title}</a> | ||
</li> | ||
</ul> | ||
<div class="row"> | ||
<div class="col-md-3"> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical"> | ||
<a repeat.for="row of router.navigation" | ||
class="nav-link ${row.isActive ? 'active' : ''}" | ||
href.bind="row.href">${ row.title }</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-10" style="padding: 0"> | ||
<div class="col-md-9" style="padding: 0"> | ||
<router-view></router-view> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</template> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
<template> | ||
<section class="au-animate"> | ||
<div class="container-fluid au-animate"> | ||
<h2>${heading}</h2> | ||
<div class="row au-stagger"> | ||
<div class="col-sm-6 col-md-3 card-container au-animate" repeat.for="user of users"> | ||
<div class="card"> | ||
<div class="avatar"> | ||
<img src.bind="user.getAvatarUrl()" crossorigin ref="image"/> | ||
</div> | ||
<div class="content"> | ||
<p class="name">${user.getLogin()}</p> | ||
<p><a target="_blank" class="btn btn-default" href.bind="user.getHtmlUrl()">Contact</a></p> | ||
<div class="col-sm-6 col-md-3 au-animate" repeat.for="user of users"> | ||
|
||
<div class="card mb-4"> | ||
<img class="card-img-top" src.bind="user.getAvatarUrl()" crossorigin ref="image"> | ||
<div class="card-body"> | ||
<h5 class="card-title">${user.getLogin()}</h5> | ||
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p> | ||
<a href.bind="user.getHtmlUrl()" target="_blank" class="btn btn-primary">Contact</a> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</template> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,22 @@ | ||
<template bindable="router"> | ||
require("./nav-bar.scss"); | ||
|
||
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#skeleton-navigation-navbar-collapse"> | ||
<span class="sr-only">Toggle Navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="#"> | ||
<i class="fa fa-home"></i> | ||
<span>${router.title}</span> | ||
</a> | ||
</div> | ||
|
||
<div class="collapse navbar-collapse" id="skeleton-navigation-navbar-collapse"> | ||
<ul class="nav navbar-nav"> | ||
<li repeat.for="row of router.navigation" class="${row.isActive ? 'active' : ''}"> | ||
<a data-toggle="collapse" data-target="#skeleton-navigation-navbar-collapse.in" href.bind="row.href">${row.title}</a> | ||
</li> | ||
</ul> | ||
|
||
<ul class="nav navbar-nav navbar-right"> | ||
<li class="loader" if.bind="router.isNavigating"> | ||
<i class="fa fa-spinner fa-spin fa-2x"></i> | ||
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary"> | ||
<a class="navbar-brand" href="#"> | ||
<i class="fa fa-home"></i> | ||
<span>${ router.title }</span> | ||
</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" | ||
aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
<li repeat.for="row of router.navigation" class="nav-item ${row.isActive ? 'active' : ''}"> | ||
<a class="nav-link" href.bind="row.href">${ row.title }</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<span class="navbar-text" if.bind="router.isNavigating"> | ||
<i class="fa fa-spinner fa-spin"></i> | ||
</span> | ||
</nav> | ||
</template> |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.