P3X GitList Demo
GitHub
Repo
Changelog
To do
Releases
Themes
Language
Auto
Afrikaans
العربية
বাংলা
Català
Čeština
Dansk
Deutsch
Ελληνικά
English
Español
Suomi
Français
עברית
Magyar
Italiano
日本語
한국어
Nederlands
Norsk
Polski
Português
Română
Русский
Српски
Svenska
Türkçe
Українська
Tiếng Việt
中文
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
6cd6de1cee2207cd88e263fdfd3937f488e91cc8
Branches
master
Files
Commits
Log
Graph
Stats
corifeus-app-web-pages.git
src
app
layout
cory-layout.html
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Delete
Are you sure to delete this file?
Editor
Raw
Blame
History
6kB
135 lines
HTML code
Clone
HTTPS
This file (6kB) exceeds the allowed full mode (48 kb) size. The editor full height is disabled, only scrolling is allowed.
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height mode.
src/app/layout/cory-layout.html
<cory-mat-loading [cory-visible]="packages === undefined"></cory-mat-loading> <cory-layout-header></cory-layout-header> <mat-sidenav-container class="cory-layout-sidenav-container" [style.z-index]="menuSidenav.opened ? 2 : 1"> <mat-sidenav #menuSidenav position="end" class="cory-layout-sindenav" style="min-width: 300px; "> <button disabled mat-menu-item> {{ i18n.title.packages }} </button> <form class="cory-layout-sidenav-search" (keydown)="keyDownFunction($event)"> <!-- <input type="text" style="position: absolute; top: 0; left: 0; opacity: 1.0; height: 0; border: none; padding: 0; margin: 0; line-height: 0;" tabindex="0"> --> <mat-form-field appearance="outline" style="width: 100%;" class="cory-layout-search-field"> <input matInput #searchText (keyup)="search(searchText.value)" placeholder="{{ i18n.title.search }}"/> <mat-icon *ngIf="searchText.value.trim() != ''" style="cursor: pointer; position: relative; top: 3px;" matSuffix (click)="searchText.value = ''; search('')" color="primary">clear </mat-icon> </mat-form-field> <span *ngIf="reposSearch?.length === 0" style="opacity: 0.5;"> {{ i18n.title.searchNotFound }} </span> </form> <button mat-menu-item *ngFor="let repo of reposSearch" (click)="navigate('/' + repo + '/index.html' ); menuRepoActive = repo; menuMenuActive = undefined; packageMenuClose()" [class.cory-mat-menu-item-active]="menuRepoActive == repo" > <!-- if this is enabled, we loose scrolling - tooltip not working with scrollable panels [matTooltip]="extractTitleWithStars(packages[repo])" matTooltipPosition="left" --> <span *ngIf="packages[repo]"> <span id="cory-pages-layout-menu-main-icon"> <i *ngIf="packages[repo]" [class]="packages[repo].corifeus.icon||'fas fa-bolt' "></i> </span> <span class="cory-pages-layout-menu-main-title" > {{ extractTitle(packages[repo]) }} </span> <span *ngIf="packages[repo].corifeus.stargazers_count > 0" style="opacity: 0.25; position: relative; top: -30px; right: 0px; font-size: 10px;"> <i class="fas fa-star"></i> {{ extractStars(packages[repo].corifeus.stargazers_count) }} </span> <div style="float: right; margin-left: 5px; opacity: 0.25;"> {{ packages[repo].corifeus.code }} </div> </span> </button> </mat-sidenav> <div class="cory-mat-container"> <mat-card> <!-- Counter: {{ counter }} --> <mat-card-content style="position: relative;" *ngIf="packageJson !== undefined"> <cory-web-pages-build-status style="float: left;" [cory-pkg]="packageJson" *ngIf="showTitle"></cory-web-pages-build-status> <div style="float: right; font-weight: bold; font-size: 125%;" *ngIf="showTitle"> <span >v{{ packageJson.version }}</span> <div *ngIf="packageJson.corifeus.stargazers_count > 0" style="text-align: right;"> <i class="fas fa-star"></i> <span [matTooltip]="i18n.title.githubStars" matTooltipPosition="below">{{ extractStars(packageJson.corifeus.stargazers_count) }} </span> </div> </div> <div *ngIf="showTitle" style="clear: both"></div> <!-- <div *ngIf="packageJson.corifeus.publish"> <br/> <a href="https://npmjs.com/package/{{ packageJson.name }}/" target="_blank"> <img src="https://nodei.co/npm/{{ packageJson.name }}.png?downloads=true&downloadRank=true&stars=true" alt="NPM" class="badge badge" style="max-width: 408px; width: 100%;"> </a> </div> --> <span *ngIf="showTitle"> <br/> <span id="cory-mat-pages-title" class="cory-layout-title"></span> <br/> <div *ngIf="packageJson.corifeus.angular"> <h2>Built on Angular v{{packageJson.corifeus.angular}}</h2> </div> <!-- <div *ngIf="packageJson.collective"> <br/> <a routerLink="/{{ packageJson.corifeus.reponame }}/open-collective" style="font-weight: bold; font-size: 125%;" //FIXME: never use [innerHTML]="renderTwemoji(i18n.title.opencollective.label)"> </a> <br/> </div> --> </span> <router-outlet> </router-outlet> </mat-card-content> </mat-card> </div> </mat-sidenav-container> <cory-layout-footer></cory-layout-footer> <div *ngIf="menuSidenav.opened" id="cory-pages-layout-menu-main-close" style=""> <button mat-icon-button color="primary" (click)="packageMenuClose()"> <mat-icon>close</mat-icon> </button> </div>
Keyboard shortcuts
/
Focus search
?
Show this help
Esc
Unfocus input