aboutsummaryrefslogtreecommitdiffstats
path: root/doc/webpage-element-import.md
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-12-30 09:10:26 -0500
committerAndrew Manning <tamanning@zoho.com>2016-12-30 09:10:26 -0500
commit2ba23ebb136b222b59bd0d59e9f606b3b5e4572c (patch)
treea68d71e0b56b13c58c82a0822df60aaf2dacb1e4 /doc/webpage-element-import.md
parent74d69bdedc6ba3edcb2de43bda1be453123292c1 (diff)
downloadvolse-hubzilla-2ba23ebb136b222b59bd0d59e9f606b3b5e4572c.tar.gz
volse-hubzilla-2ba23ebb136b222b59bd0d59e9f606b3b5e4572c.tar.bz2
volse-hubzilla-2ba23ebb136b222b59bd0d59e9f606b3b5e4572c.zip
Reorganized and revised Zot Protocol content. Deleted some of the old pages that have been refactored.
Diffstat (limited to 'doc/webpage-element-import.md')
-rw-r--r--doc/webpage-element-import.md94
1 files changed, 0 insertions, 94 deletions
diff --git a/doc/webpage-element-import.md b/doc/webpage-element-import.md
deleted file mode 100644
index 4330227c2..000000000
--- a/doc/webpage-element-import.md
+++ /dev/null
@@ -1,94 +0,0 @@
-## <a href="#webpage-element-import"></a>Webpage element import
-
-There are two methods of importing webpage elements: uploading a zip file or
-referencing a local cloud files folder. Both methods require that the webpage
-elements are specified using a specific folder structure. The import tool makes
-it possible to import all the elements necessary to construct an entire website
-or set of websites. The goal is to accommodate external development of webpages
-as well as tools to simplify and automate deployment on a hub.
-
-### Folder structure
-Element definitions must be stored in the repo root under folders called
-
- /pages/
- /blocks/
- /layouts/
-
-
-Each element of these types must be defined in an individual subfolder using two files: one JSON-formatted file for the metadata and one plain text file for the element content.
-
-### Page elements
-Page element metadata is specified in a JSON-formatted file called `page.json` with the following properties:
-
- * title
- * pagelink
- * mimetype
- * layout
- * contentfile
-
-**Example**
-
-Files:
-
- /pages/my-page/page.json
- /pages/my-page/my-page.bbcode
-
-Content of `page.json`:
-
- {
- "title": "My Page",
- "pagelink": "mypage",
- "mimetype": "text/bbcode",
- "layout": "my-layout",
- "contentfile": "my-page.bbcode"
- }
-
-
-### Layout elements
-Layout element metadata is specified in a JSON-formatted file called `layout.json` with the following properties:
-
- * name
- * description
- * contentfile
-
-**Example**
-
-Files:
-
- /layouts/my-layout/layout.json
- /layouts/my-layout/my-layout.bbcode
-
-Content of `layout.json`:
-
- {
- "name": "my-layout",
- "description": "Layout for my project page",
- "contentfile": "my-layout.bbcode"
- }
-
-
-### Block elements
-Block element metadata is specified in a JSON-formatted file called `block.json` with the following properties:
-
- * name
- * title
- * mimetype
- * contentfile
-
-**Example**
-
-Files:
-
- /blocks/my-block/block.json
- /blocks/my-block/my-block.html
-
-Content of `block.json`:
-
-
- {
- "name": "my-block",
- "title": "",
- "mimetype": "text/html",
- "contentfile": "my-block.html"
- }
- \ No newline at end of file