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
this.jsonLdService.setData('JobPosting', { | |
title: job.title, | |
description: job.description, | |
datePosted: job.created_at, | |
employmentType: job.type, | |
hiringOrganization: this.jsonLdService.getObject('Organization', { | |
name: job.organization.name, | |
sameAs: job.organization.website, | |
}), | |
jobLocation: this.jsonLdService.getObject('Place', { |
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
{ | |
... | |
"projects": { | |
... | |
"architect": { | |
"build": { | |
"options": { | |
... | |
"lazyModules": [ | |
"src/app/login-modal/login-modal.module" |
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
import { NgModule } from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
import { LoginModalComponent } from './login-modal.component'; | |
@NgModule({ | |
imports: [ | |
CommonModule | |
], | |
declarations: [LoginModalComponent], | |
bootstrap: [LoginModalComponent] |
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
<header class="mdc-toolbar"> | |
<div class="mdc-toolbar__row"> | |
<section class="mdc-toolbar__section mdc-toolbar__section--align-start"> | |
<span class="mdc-toolbar__title"> | |
<a class="no-link">Github Search</a> | |
</span> | |
</section> | |
<section class="mdc-toolbar__section mdc-toolbar__section--align-end"> | |
<a class="material-icons search align-icons no-link" aria-label="Search" alt="Search">search</a> | |
</section> |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"vscode_custom_css.imports": ["file:///Users/zamamoha/Desktop/styles.css"] | |
} |
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
.type.storage,.type.storage.declaration, .storage.class.modifier { | |
font-family: 'flottflott'; | |
font-size: 1.7em; | |
} | |
.type.storage.arrow.function { | |
font-family: 'Fira Code' | |
} | |
.decorator.name, .decorator.punctuation:not(.block), .import.keyword { |