mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
* platform page and images
* add hrefs and link styles
* update responsive layout and images
* remove waves, lint fixes
* page locals
* Update new-license.ejs
* Revert "Update new-license.ejs"
This reverts commit ade27acf43.
* Update platform.ejs
* reorder topnav, adjust mobile styles
* add href, fix padding
* a couple of style tweaks
• Reduced space between sections.
• Center-aligned images and text vertically.
Co-authored-by: Mike Thomas <[email protected]>
27 lines
261 B
JavaScript
Vendored
27 lines
261 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View platform',
|
|
|
|
|
|
description: 'Display "Platform" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/platform'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|