diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-01 21:54:41 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-01 21:54:41 +0100 |
commit | 6c8128f9fd5a5d0be115806c35a21b3d683df8d6 (patch) | |
tree | f46c2f6b3b9b294ff32bd75c08ccdc9e7a8cc4ef /sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.component.ts.template | |
parent | 2400b84e95913665da6279114168148444b8f9ab (diff) | |
parent | 7d3640f824f46490b47bd95f1c5a16644f712068 (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into logo
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.component.ts.template')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.component.ts.template | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.component.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.component.ts.template new file mode 100644 index 00000000..8407fe8a --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/other-files/app.component.ts.template @@ -0,0 +1,36 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: '<%= selector %>',<% if(inlineTemplate) { %> + template: ` + <!--The content below is only a placeholder and can be replaced.--> + <div style="text-align:center" class="content"> + <h1> + Welcome to {{title}}! + </h1> + <span style="display: block">{{ title }} app is running!</span> + <img width="300" alt="Angular Logo" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg=="> + </div> + <h2>Here are some links to help you start: </h2> + <ul> + <li> + <h2><a target="_blank" rel="noopener" href="https://angular.io/tutorial">Tour of Heroes</a></h2> + </li> + <li> + <h2><a target="_blank" rel="noopener" href="https://angular.io/cli">CLI Documentation</a></h2> + </li> + <li> + <h2><a target="_blank" rel="noopener" href="https://blog.angular.io/">Angular blog</a></h2> + </li> + </ul> + <% if (routing) { + %><router-outlet></router-outlet><% + } %> + `,<% } else { %> + templateUrl: './app.component.html',<% } if(inlineStyle) { %> + styles: []<% } else { %> + styleUrls: ['./app.component.<%= style %>']<% } %> +}) +export class AppComponent { + title = '<%= name %>'; +} |