P3X GitList Demo
GitHub
Repo
Changelog
To do
Releases
Themes
Language
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:
ea9fe29d8d982ba9ea9e6625e4798a51ef59e1d5
Branches
master
Files
Commits
Log
Graph
Stats
corifeus-app-web-pages.git
src
angular
modules
github
layout
cory-layout.html
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Delete
Are you sure to delete this file?
Editor
Raw
Blame
History
HTML code
Clone
SSH
HTTPS
This file ( 5kB ) exceeds the allowed full mode (48 kb) size. The editor full hight 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, although some users like it.
src/angular/modules/github/layout/cory-layout.html
<cory-mat-loading [cory-visible]="packages === undefined"></cory-mat-loading> <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 style="width: 100%;"> <input matInput #searchText (keyup)="search(searchText.value)" placeholder="{{ i18n.title.search }}"/> <mat-icon *ngIf="searchText.value.trim() != ''" style="cursor: pointer;" 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('github/' + 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%;"> <span *ngIf="showTitle">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" [innerHTML]="renderTwemoji(packageJson.description)"></span> <br/> <div *ngIf="packageJson.corifeus.angular"> <h2>Built on Angular v{{packageJson.corifeus.angular}}</h2> </div> <div *ngIf="packageJson.collective"> <br/> <a routerLink="/github/{{ packageJson.corifeus.reponame }}/open-collective" style="font-weight: bold; font-size: 125%;" [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-header></cory-layout-header> <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>