-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(redesign): new design for documentation page (#2680)
* feat(redesign): new design for documentation page * fix(redesign): fixed major issues for new design and mobile version * feat(landing): new landing page [WIP] * feat(landing): new landing page [ci skip]
- Loading branch information
1 parent
ae2ace3
commit fc0cd35
Showing
87 changed files
with
1,938 additions
and
1,610 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
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,14 +1,2 @@ | ||
<top-menu></top-menu> | ||
<main-menu></main-menu> | ||
|
||
<div id="main"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-10 col-xs-12 col-md-offset-1 push-md-1"> | ||
<router-outlet></router-outlet> | ||
</div> | ||
</div> | ||
</div> | ||
<app-footer></app-footer> | ||
</div> | ||
|
||
<router-outlet></router-outlet> |
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
Empty file.
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,13 @@ | ||
import { Component } from '@angular/core'; | ||
import { Router } from '@angular/router'; | ||
import { routes } from '../../app.routing'; | ||
import { StyleManager } from '../../theme/style-manager'; | ||
import { ThemeStorage } from '../../theme/theme-storage'; | ||
|
||
@Component({ | ||
selector: 'add-nav', | ||
templateUrl: './add-nav.component.html' | ||
}) | ||
export class AddNavComponent { | ||
public constructor() {} | ||
} |
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,8 +1,6 @@ | ||
<footer class="app-footer col-md-12"> | ||
<div class="container"> | ||
<p>Designed and built by the <a href="https://github.com/orgs/valor-software/teams/ng-team" target="_blank" rel="noopener">ng-team</a> | ||
with the help of our <a href="https://github.com/valor-software/ngx-bootstrap/graphs/contributors" target="_blank" rel="noopener">contributors.</a></p> | ||
<p>Code licensed under <a href="https://github.com/valor-software/ngx-bootstrap/blob/development/LICENSE" target="_blank" rel="noopener">MIT license conditions</a>, docs <a href="https://creativecommons.org/licenses/by/3.0/" target="_blank" rel="noopener">CC BY 3.0</a></p> | ||
<p>Design and content of the documentation site heavily inspired by the <a target="_blank" rel="noopener" href="http://v4-alpha.getbootstrap.com/">original bootstrap.</a> documentation</p> | ||
</div> | ||
<footer class="app-footer"> | ||
<p>Designed and built by the <a href="https://github.com/orgs/valor-software/teams/ng-team" target="_blank" rel="noopener">ng-team</a> | ||
with the help of our <a href="https://github.com/valor-software/ngx-bootstrap/graphs/contributors" target="_blank" rel="noopener">contributors.</a></p> | ||
<p>Code licensed under <a href="https://github.com/valor-software/ngx-bootstrap/blob/development/LICENSE" target="_blank" rel="noopener">MIT license conditions</a>, docs <a href="https://creativecommons.org/licenses/by/3.0/" target="_blank" rel="noopener">CC BY 3.0</a></p> | ||
<p>Design and content of the documentation site heavily inspired by the <a target="_blank" rel="noopener" href="http://v4-alpha.getbootstrap.com/">original bootstrap</a> documentation</p> | ||
</footer> |
13 changes: 13 additions & 0 deletions
13
demo/src/app/common/documentation/documentation.component.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<main class="main"> | ||
<sidebar class="sidebar"></sidebar> | ||
|
||
<section class="main-container"> | ||
<div class="content"> | ||
<router-outlet></router-outlet> | ||
</div> | ||
<app-footer></app-footer> | ||
</section> | ||
|
||
<add-nav class="add-nav"></add-nav> | ||
|
||
</main> |
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,7 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'documentation', | ||
templateUrl: './documentation.component.html' | ||
}) | ||
export class DocumentationComponent {} |
44 changes: 44 additions & 0 deletions
44
demo/src/app/common/getting-started/getting-started.component.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<demo-section> | ||
<div id="content" class="content-box"> | ||
|
||
<div class="image-responsive img-fluid"> | ||
<img class="mx-auto center-block d-block" src="assets/images/logos/angular.svg" | ||
alt="angular logo" width="250" height="250"> | ||
</div> | ||
|
||
<h1 align="center"> | ||
<a href="https://github.com/valor-software/ngx-bootstrap">ngx-bootstrap</a> | ||
</h1> | ||
|
||
<p align="center"> | ||
The best way to quickly integrate <a href="https://getbootstrap.com/">Bootstrap 3</a> or <a | ||
href="https://getbootstrap.com/docs/4.0">Bootstrap 4</a> Components with <a href="https://angular.io/">Angular</a> | ||
</p> | ||
|
||
<p align="center"> | ||
<span style="margin-top: 10px;display: inline-block;width: 120px;"> | ||
<iframe frameborder="0" scrolling="0" style="height: 20px;width: 120px;" | ||
title="github stars count" | ||
src="https://ghbtns.com/github-btn.html?user=valor-software&repo=ngx-bootstrap&type=star&count=true"></iframe></span> | ||
<br/> | ||
|
||
<a href="https://badge.fury.io/js/ngx-bootstrap"> | ||
<img src="https://badge.fury.io/js/ngx-bootstrap.svg" alt="npm version"> | ||
</a> | ||
|
||
<a href="https://npmjs.org/ngx-bootstrap"> | ||
<img src="https://img.shields.io/npm/dm/ngx-bootstrap.svg" alt="npm downloads"> | ||
</a> | ||
|
||
<br/> | ||
<a href="https://travis-ci.org/valor-software/ngx-bootstrap"> | ||
<img alt="build status" src="https://travis-ci.org/valor-software/ngx-bootstrap.svg?branch=development"> | ||
</a> | ||
<a href="https://ngx-slack.herokuapp.com"> | ||
<img src="https://ngx-slack.herokuapp.com/badge.svg" alt="slack"> | ||
</a> | ||
</p> | ||
|
||
<div class="section" [innerHTML]="doc"></div> | ||
</div> | ||
</demo-section> |
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
File renamed without changes.
Oops, something went wrong.