There was a problem fetching the pipeline summary.
Merge branch 'simple500' into 'master'
Standardize and materialize 500, 404, and 403 pages **In this PR:** - Removed bootstrap CSS - Added inline Material Design Lite CSS - Added a single CSS file for ease of editing, which can be minified and copy+pasted into the inline styles - Updated CSS (changed old red to new red, removed extraneous CSS) - Added very basic tab-selection function - Added sad bucky - Moved alternate links into tabs (uw-system links are shown by default and uw-madison links can be seen by clicking the uw-madison tab) - Added `npm` to serve locally for dev purposes - Updated readme **Note:** Previously, bootstrap CSS was being brought in via CDN and other styles were added via `<style>` tags. Using the latter approach for MDL looks pretty gory in the HTML. Can I use a CDN for that like we were doing for bootstrap or would that be considered a dependency? ### Screenshots    Notify: @timothy-vertein @levett @michael-adas @andrew-petro See merge request !9
No related branches found
No related tags found
Pipeline #
Showing
- .gitignore 4 additions, 1 deletion.gitignore
- README.md 6 additions, 1 deletionREADME.md
- myuw-root-webapp/src/main/webapp/403.html 30 additions, 115 deletionsmyuw-root-webapp/src/main/webapp/403.html
- myuw-root-webapp/src/main/webapp/404.html 35 additions, 114 deletionsmyuw-root-webapp/src/main/webapp/404.html
- myuw-root-webapp/src/main/webapp/500.html 136 additions, 179 deletionsmyuw-root-webapp/src/main/webapp/500.html
- myuw-root-webapp/src/main/webapp/bucky-sad.png 0 additions, 0 deletionsmyuw-root-webapp/src/main/webapp/bucky-sad.png
- myuw-root-webapp/src/main/webapp/webapp.css 164 additions, 0 deletionsmyuw-root-webapp/src/main/webapp/webapp.css
- package.json 20 additions, 0 deletionspackage.json
4.18 KiB
myuw-root-webapp/src/main/webapp/webapp.css
0 → 100644
package.json
0 → 100644
{ | ||
"name": "my-root", | ||
"version": "1.1.7", | ||
"description": "Root context of MyUW. Serves static HTML pages for 500 and 400 level errors.", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"prestart": "npm install", | ||
"start": "http-server ./myuw-root-webapp/src/main/webapp/ -p 8080 -c-1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@git.doit.wisc.edu:myuw/my-root.git" | ||
}, | ||
"author": "Tim Levett, Zeke Witter", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"http-server": "^0.9.0" | ||
} | ||
} |