diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-08-23 21:33:42 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-08-23 21:33:42 +0200 |
| commit | a05d52a7b13607181ce0443b17769bb02532dfc1 (patch) | |
| tree | f5c4722363f29a610d1a4f95efbd9351999083f6 /index.js | |
| parent | 5ddde1cbb70bf4bc2df127fced5afb966069d299 (diff) | |
importing rtf
Diffstat (limited to 'index.js')
| -rw-r--r-- | index.js | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -18,10 +18,11 @@ var tagTypes = [ "AGO", "courtauld", "intervensions", - "connosieurship", + "connsoeurship", "double agent", "forensics", "black box", + "Stankievech", ].map((type, index) => [index, type]); var app = okcms @@ -42,6 +43,8 @@ var app = okcms id: { type: "string", hidden: true }, title: { type: "string" }, author: { type: "string" }, + type: { type: "enum", options: ["image", "video", "3d"] }, + citation: { type: "text" }, description: { type: "text" }, thumbnail: { type: "image" }, images: { type: "gallery" }, @@ -74,6 +77,10 @@ var app = okcms { type: "ui", query: "*" }, ], }, + "/review": { + template: "review", + data: [{ type: "page", query: "*" }], + }, }, services: { |
