<%= page.title %>
4 |<%- page.content %>
5 | <%- include('../partials/nav') %>
6 | ├── scripts ├── object-type.json ├── objects.json └── import.js ├── views ├── pages │ ├── default.ejs │ └── 404.ejs └── partials │ ├── footer.ejs │ ├── nav.ejs │ └── header.ejs ├── serverless.yml ├── package.json ├── app.js ├── .gitignore └── README.md /scripts/object-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Pages", 3 | "slug": "pages", 4 | "singular": "page" 5 | } -------------------------------------------------------------------------------- /views/pages/default.ejs: -------------------------------------------------------------------------------- 1 | <%- include('../partials/header') %> 2 |