mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
001626eae8
* 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 ade27acf43c6373993f74febe89881ea0a47f944. * 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 <mthomas@fleetdm.com>
28 lines
261 B
JavaScript
Vendored
28 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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|