aboutsummaryrefslogtreecommitdiffstats
path: root/doc/member/webpages.bb
diff options
context:
space:
mode:
authorAndrew Manning <andrew@reticu.li>2016-11-27 14:48:06 -0700
committerAndrew Manning <andrew@reticu.li>2016-11-27 14:48:06 -0700
commit369dc295b12bc3fc4cc2ab50727bea277a44d91c (patch)
tree1467f730f7b6a61160d5142fe02537adca1e0905 /doc/member/webpages.bb
parent7470b1180e884104b690b39dce90143c72c096a3 (diff)
downloadvolse-hubzilla-369dc295b12bc3fc4cc2ab50727bea277a44d91c.tar.gz
volse-hubzilla-369dc295b12bc3fc4cc2ab50727bea277a44d91c.tar.bz2
volse-hubzilla-369dc295b12bc3fc4cc2ab50727bea277a44d91c.zip
Add some identity-aware parsing to HTML content using parseIdentityAwareHTML()
Diffstat (limited to 'doc/member/webpages.bb')
-rw-r--r--doc/member/webpages.bb93
1 files changed, 0 insertions, 93 deletions
diff --git a/doc/member/webpages.bb b/doc/member/webpages.bb
deleted file mode 100644
index 2b909dc63..000000000
--- a/doc/member/webpages.bb
+++ /dev/null
@@ -1,93 +0,0 @@
-[b]Creating Web Pages[/b]
-
-Hubzilla enables users to create static webpages. To activate this feature, enable the web pages feature in your Additional Features section.
-
-Once enabled, a new tab will appear on your channel page labelled &quot;Webpages&quot;. Clicking this link will take you to the webpage editor.
-Pages will be accessible at mydomain/page/username/pagelinktitle
-
-The &quot;page link title&quot; box allows a user to specify the &quot;pagelinktitle&quot; of this URL. If no page link title is set, we will set one for you automatically, using the message ID of the item.
-
-Beneath the page creation box, a list of existing pages will appear with an &quot;edit&quot; link. Clicking this will take you to an editor, similar to that of the post editor, where you can make changes to your webpages.
-
-See also:
-
-[zrl=[baseurl]/help/webpage-element-import]Webpage element import tool[/zrl]
-
-[b]Using Blocks[/b]
-
-Blocks can be parts of webpages. The basic HTML of a block looks like this
-[code]
- <div>
- Block Content
- </div>
-
-[/code]
-
-If a block has text/html content type it can also contain menu elements. Sample content of
-[code]
- <p>HTML block content</p>
- [menu]menuname[/menu]
-
-[/code]
-will produce HTML like this
-[code]
- <div>
- <p>HTML block content</p>
- <div>
- <ul>
- <li><a href="#">Link 1</a></li>
- <li><a href="#">Link 2</a></li>
- <li><a href="#">Link 3</a></li>
- </ul>
- </div>
- </div>
-
-[/code]
-
-Via the $content macro a block can also contain the actual webpage content. For this create a block with only
-[code]
- $content
-
-[/code]as content.
-
-To make a block appear in the webpage it must be defined in the page layout inside a region.
-[code]
- [region=aside]
- [block]blockname[/block]
- [/region]
-
-[/code]
-
-The block appearance can be manipulated in the page layout.
-
-Custom classes can be assigned
-[code]
- [region=aside]
- [block=myclass]blockname[/block]
- [/region]
-
-[/code]
-will produce this HTML
-[code]
- <div class="myclass">
- Block Content
- </div>
-
-[/code]
-
-Via the wrap variable a block can be stripped off its wrapping <div></div> tag
-[code]
- [region=aside]
- [block][var=wrap]none[/var]blockname[/block]
- [/region]
-
-[/code]
-will produce this HTML
-[code]
- Block Content
-
-[/code]
-
-
-#include doc/macros/main_footer.bb;
-