-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into SHIBUI-570
- Loading branch information
Showing
27 changed files
with
397 additions
and
98 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { brand as customBrand } from '../brand'; | ||
import { Brand } from './core/model/brand'; | ||
|
||
export const brand: Brand = { | ||
header: { | ||
title: 'Source Management' | ||
}, | ||
logo: { | ||
default: '/assets/shibboleth_logowordmark_color.png', | ||
small: '/assets/shibboleth_icon_color_130x130.png', | ||
large: '/assets/shibboleth_logowordmark_color.png', | ||
alt: 'Shibboleth Logo - Click to be directed to www.shibboleth.net', | ||
link: { | ||
label: 'Shibboleth', | ||
url: 'https://www.shibboleth.net/' | ||
} | ||
}, | ||
footer: { | ||
links: [ | ||
{ | ||
label: 'Home Page', | ||
url: 'https://www.shibboleth.net/', | ||
description: 'Shibboleth.net open-source community home page' | ||
}, | ||
{ | ||
label: 'Wiki', | ||
url: 'https://wiki.shibboleth.net/', | ||
description: 'Shibboleth.net open-source community wiki' | ||
}, | ||
{ | ||
label: 'Issue Tracker', | ||
url: 'https://issues.shibboleth.net/', | ||
description: 'Shibboleth.net open-source community issue tracker' | ||
}, | ||
{ | ||
label: 'Mailing List', | ||
url: 'https://www.shibboleth.net/community/lists/', | ||
description: 'Shibboleth.net open-source community mailing list' | ||
} | ||
], | ||
text: 'Links to Shibboleth resources:' | ||
}, | ||
...customBrand | ||
}; |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
export interface Brand { | ||
logo: Logo; | ||
footer: Footer; | ||
header: Header; | ||
} | ||
|
||
export interface Header { | ||
title: string; | ||
} | ||
|
||
export interface Logo { | ||
default: string; | ||
small: string; | ||
large: string; | ||
alt: string; | ||
link: Link; | ||
[propName: string]: any; | ||
} | ||
|
||
export interface Footer { | ||
links: Link[]; | ||
text: string; | ||
} | ||
|
||
export interface Link { | ||
label: string; | ||
url: string; | ||
description?: string; | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.