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
{% macro status(logosm=true, logolg=false, loggedin=false) %} | |
<div class="th-header th-header-white-wr"> | |
<div class="container th-no-p"> | |
<div class="th-header-white"> | |
<div> | |
<a href="/" class="th-header__logo-sm {% if logosm %} th-header__logo-sm_visible {% endif %}"> | |
<img src="images/logo-sm.png" srcset="images/logo-sm.png 1x, images/[email protected] 2x" alt="TravelHub Logo"> | |
</a> |
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 { DOCUMENT } from '@angular/platform-browser'; | |
import { Inject, Injectable } from '@angular/core'; | |
@Injectable() | |
export class AppReadyService { | |
private doc: Document; | |
private isAppReady: boolean; | |
constructor(@Inject(DOCUMENT) doc: any) { | |
this.doc = doc; |
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 matplotlib.pyplot as plt | |
config_colors = { | |
'red': '#f05e5e', | |
'orange': '#ffcf62', | |
'green': '#8fc980', | |
'blue': '#695ff6', | |
'purple': '#413aa1', | |
'grey': '#84839c' | |
} |
OlderNewer