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:
43ec7fcabd98552121c65214ccaed6412976cfb1
Branches
master
Files
Commits
Log
Graph
Stats
corifeus-app-web-pages.git
src
angular
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 ( 2kB ) 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/layout/cory-layout.html
<cory-mat-loading></cory-mat-loading> <md-sidenav-container class="cory-layout-sidenav-container"> <md-sidenav #menuSidenav align="end"> <button md-button (click)="packageMenuClose()">Close</button> <button disabled md-menu-item> {{ i18n.title.packages }} </button> <button md-menu-item *ngFor="let repo of repos" (click)="navigate('github/' + repo.name + '/index.html' ); menuRepoActive = repo.name; menuMenuActive = undefined; " [class.cory-mat-menu-item-active]="menuRepoActive == repo.name" > <span *ngIf="packages[repo.name]"> <span style="min-width: 24px !important; display: inline-block; text-align: center;"> <i *ngIf="packages[repo.name]" [class]="packages[repo.name].corifeus.icon"></i> </span> {{ extractTitle(packages[repo.name]) }} <div style="float: right; margin-left: 5px; opacity: 0.25;"> {{ packages[repo.name].corifeus.code }} </div> </span> </button> </md-sidenav> <div class="cory-mat-container cory-mat-container-fixed"> <cory-layout-header></cory-layout-header> <md-card> <md-card-content style="position: relative;"> <cory-web-pages-build-status style="float: left;" [cory-repo]="currentRepo"></cory-web-pages-build-status> <div style="float: right; font-weight: bold; font-size: 125%;"> v{{ packageJson.version }} | {{ moment(packageJson.corifeus['time-stamp']).format('llll') }} </div> <div 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> <router-outlet> </router-outlet> </md-card-content> </md-card> <cory-layout-footer></cory-layout-footer> </div> </md-sidenav-container>