Skip to content
Snippets Groups Projects
splashScreen.template.html 947 B
Newer Older
<div splashScreenContainer>
Daviti Gogshelidze's avatar
Daviti Gogshelidze committed
  <div splashScreenHeader *ngIf="!isMobile">
    <div class="splashScreenHeaderLogoContainer"><img class="splashScreenHeaderLogo " src="./res/image/HBP_Primary_RGB_BlackText.png"> </div>
    <div class="spaceForFill">
    </div>
  </div>
  <div splashScreenTemplate>
    <div *ngFor="let template of loadedTemplate$ | async | filterNull" splashScreenTemplateItem>
      <div class="template-card" (click) = "selectTemplate(template)">
        <div splashScreenTemplateHeader>
          {{template.properties.name}}
        </div>
        <div splashScreenTemplateBody>
          <div splashScreenTemplateBodyImage>
            <img class="template-image" [src]="'./res/image/' + correctString(template.properties.name) + '.png'">
          </div>
          <div splashScreenTemplateBodyDescription>
            {{template.properties.description}}
          </div>
        </div>
      </div>
    </div>
Daviti Gogshelidze's avatar
Daviti Gogshelidze committed
</div>