-
Notifications
You must be signed in to change notification settings - Fork 21
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
1 parent
b505ef7
commit 2655933
Showing
3 changed files
with
145 additions
and
34 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,29 +1,33 @@ | ||
<div class="jumbotron jumbotron-fluid"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-4 d-flex justify-content-center justify-content-md-end"> | ||
<img src="assets/logo.svg" alt="ngx-linkifyjs logo" class="logo"> | ||
</div> | ||
<div class="col-sm-8 text-center text-md-left"> | ||
<h1>ngx-linkifyjs</h1> | ||
<p>Angular V6 wrapper for linkifyjs - library for finding links in plain text and converting them to HTML <a> tags via linkifyjs</p> | ||
<p>Scroll down to see it in action!</p> | ||
<p class="buttons"> | ||
<a class="btn btn-outline-primary btn-lg" href="https://github.com/anthonynahas/ngx-linkifyjs" target="_blank"><i class="fa fa-github fa-lg"></i> Code on Github</a> | ||
<a class="btn btn-outline-primary btn-lg" href="doc/index.html" target="_blank"><i class="fa fa-book fa-lg"></i> Documentation</a> | ||
<a class="btn btn-outline-primary btn-lg" href="#" (click)="editOnStackBlitz()"><i class="fa fa-bolt fa-lg"></i> Edit on StackBlitz</a> | ||
</p> | ||
</div> | ||
</div> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-4 d-flex justify-content-center justify-content-md-end"> | ||
<img src="assets/logo.svg" alt="ngx-linkifyjs logo" class="logo"> | ||
</div> | ||
<div class="col-sm-8 text-center text-md-left"> | ||
<h1>ngx-linkifyjs</h1> | ||
<p>Angular V6 wrapper for linkifyjs - library for finding links in plain text and converting them to HTML <a> | ||
tags via linkifyjs</p> | ||
<p>Scroll down to see it in action!</p> | ||
<p class="buttons"> | ||
<a class="btn btn-outline-primary btn-lg" href="https://github.com/anthonynahas/ngx-linkifyjs" | ||
target="_blank"><i class="fa fa-github fa-lg"></i> Code on Github</a> | ||
<a class="btn btn-outline-primary btn-lg" href="doc/index.html" target="_blank"><i | ||
class="fa fa-book fa-lg"></i> Documentation</a> | ||
<a class="btn btn-outline-primary btn-lg" href="#" (click)="editOnStackBlitz()"><i | ||
class="fa fa-bolt fa-lg"></i> Edit on StackBlitz</a> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
<section class="home"> | ||
<div class="container"> | ||
<!-- put your content here--> | ||
<p>Put your content here. Typically, examples of your library in action (directives, components...)</p> | ||
<ngx-component></ngx-component> | ||
<p>Happy ng-hacking!</p> | ||
<!-- put your content here--> | ||
<span [innerHTML]="'Linkify the following URL: https://github.com/SoapBox/linkifyjs/' | linkify"></span> | ||
<!--<ngx-component></ngx-component>--> | ||
<p>Happy ng-hacking!</p> | ||
</div> | ||
</section> |