-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Navbar updates and massive refactor of build system
Using ngconstant module now to build constants into app in a more structured manner. Templating is no longer required! Updated the website's headers, footers, and other styles to match site new wide style. Additionally added a new login widget to show the user's name and profile pic.
- Loading branch information
Showing
43 changed files
with
841 additions
and
648 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,4 +69,5 @@ bin/ | |
es6/ | ||
vendor/ | ||
src/assets/temp | ||
.sass-cache | ||
.sass-cache | ||
*.generated* |
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 |
---|---|---|
@@ -1,30 +1,45 @@ | ||
{ | ||
"keys": { | ||
"googleMaps": "" | ||
}, | ||
"configFile": "src/baw.configuration.tpl.js", | ||
"development": { | ||
"apiRoot": "http://staging.ecosounds.org", | ||
"siteRoot": "http://localhost:8080", | ||
"siteDir": "/", | ||
"ga": { | ||
"trackingId": "" | ||
} | ||
}, | ||
"staging": { | ||
"apiRoot": "http://staging.EXAMPLE.org", | ||
"siteRoot": "http://staging.EXAMPLE.org/system/listen_to", | ||
"siteDir": "/system/listen_to/", | ||
"ga": { | ||
"trackingId": "<<PLACEHOLDER>>" | ||
"environments" : { | ||
"development": { | ||
"apiRoot": "http://staging.ecosounds.org", | ||
"siteRoot": "http://localhost:8080", | ||
"siteDir": "/", | ||
"ga": { | ||
"trackingId": "" | ||
} | ||
}, | ||
"staging": { | ||
"apiRoot": "http://staging.EXAMPLE.org", | ||
"siteRoot": "http://staging.EXAMPLE.org/system/listen_to", | ||
"siteDir": "/system/listen_to/", | ||
"ga": { | ||
"trackingId": "<<PLACEHOLDER>>" | ||
} | ||
}, | ||
"production": { | ||
"apiRoot": "http://production.EXAMPLE.org", | ||
"siteRoot": "http://production.EXAMPLE.org/system/listen_to", | ||
"siteDir": "/system/listen_to/", | ||
"ga": { | ||
"trackingId": "<<PLACEHOLDER>>" | ||
} | ||
} | ||
}, | ||
"production": { | ||
"apiRoot": "http://production.EXAMPLE.org", | ||
"siteRoot": "http://production.EXAMPLE.org/system/listen_to", | ||
"siteDir": "/system/listen_to/", | ||
"ga": { | ||
"trackingId": "<<PLACEHOLDER>>" | ||
"values": { | ||
"keys": { | ||
"googleMaps": "" | ||
}, | ||
"brand": { | ||
"name": "<<brand name here>>", | ||
"title": "<<brand name here>> | Bioacoustic Workbench" | ||
}, | ||
"content": { | ||
"research": [ | ||
{ | ||
"innerText": "Example", | ||
"url": "http://www.EXAMPLE.org/awebpage" | ||
} | ||
] | ||
} | ||
} | ||
} |
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.