commit b6b2ad9ab4c9aa88346ef47f0f45543fef937b70 Author: Skylar Ittner Date: Tue May 8 02:31:05 2018 -0600 Create docs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45ddf0a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +site/ diff --git a/docs/System Requirements.md b/docs/System Requirements.md new file mode 100644 index 0000000..015fdd3 --- /dev/null +++ b/docs/System Requirements.md @@ -0,0 +1,75 @@ +# System Requirements + +SiteWriter (and the other Business Apps) are tested and officially supported on the following configurations. Other systems may be supported at our discretion, possibly with an additional support fee. The business apps should work on any sane Linux/PHP/MySQL based web server, even if it is not within the requirements shown here. + +## Server + +### Minimum Hardware + +The Business Apps are very lightweight on server resources. The minimum supported hardware is a $35 Rasperry Pi 3 (1.2 GHz quad-core ARM CPU, 1GB RAM, 100Mbps Ethernet). Cloud VPS servers with as little as 512 MB RAM are fine too. + +### Software and Operating System + +* Server Operating System + * Ubuntu + * Debian +* PHP + * 7.0 + * 7.1 + * 7.2 +* Database + * MySQL 5.7+ + * MariaDB 10.0+ +* Web Server + * Apache 2.4 + +### Recommended Software +For best performance, security, and ease of administration, we recommend installing the following on your server: + +* Google's ModPageSpeed Apache module (on-the-fly caching and bandwidth optimization) +* PHP's opcache (cached compiled PHP code for faster execution) +* Fail2ban (if using SSH or other remote administration methods) +* PHPMyAdmin (web-based MySQL/MariaDB server administration) +* LetsEncrypt (automatic free SSL encryption setup) + +## Client + +The Business Apps are web-based and built with modern technologies. This means any machine capable of running a standards-compliant, modern, up-to-date web browser will run the Business Apps just fine. + +### Officially Supported Operating Systems +Note: This list is incomplete, as any OS capable of running one of the browsers from the list below will suffice. + +* Linux + * Ubuntu Linux 16.04, 18.04, and supported non-LTS releases + * Ubuntu derivatives (such as Linux Mint) based on a supported Ubuntu release + * Debian 8 or 9 +* Android + * 5.0+ with Chrome, or + * Any supported by Firefox, or + * Any supported by the Business Apps for Mobile client + +### Supported Operating Systems +Any other operating system running a supported browser is also supported, but we may not provide support for issues not directly related to the Business Apps. + +### Supported Screen Resolutions +All screens with a viewport (the portion of the screen showing the app, in contrast to window borders, status bars, etc) having a resolution greater than 300x400 pixels will work, assuming use of a supported browser. + +### Supported Web Browsers +* Mozilla Firefox (54+) +* Chrome/Chromium (latest and latest-1) +* Chrome WebView, AOSP WebView (Android 5.0+) + +### Unsupported Web Browsers +While we do not support the following browsers, they will likely still work. You won't break anything by trying. + +* Edge +* Safari +* Opera + +### Known Incompatable Browsers +These browsers are known to lack support for CSS rules, JavaScript APIs, and other technology required to run the Business Apps. + +* Opera Mini +* Internet Explorer + +Recent versions of Internet Explorer should be able to view created websites with some minor changes. \ No newline at end of file diff --git a/docs/Theme Development.md b/docs/Theme Development.md new file mode 100644 index 0000000..f1eeea7 --- /dev/null +++ b/docs/Theme Development.md @@ -0,0 +1,380 @@ +# Theme Development + +Themes are a collection of page templates, assets (CSS, JS, etc) and a metadata file. They should use responsive design and be easily edited and viewed. Providing a variety of color schemes is recommended for users to choose from when building their site. + +## Folder Structure + +This is the folder structure for a standard theme. The root folder shown below should be placed in `[sitewriter app]/public/themes`. **Bold** denotes a folder, *italic* denotes required. + +* Theme Name + * _theme.json_ + * contact.php + * _default.php_ + * _404.php_ + * ***colors*** + * ***default*** + * **green** + * **etc** + + +## Metadata File + +The metadata file is required for SiteWriter to recognize the theme. It must be saved as `theme.json` in the root folder of the theme. + +It contains the theme name, singlepage flag, list of page templates, and list of theme colors. + +`singlepage` is a flag that tells SiteWriter if the theme is designed for a single-page website. If it is set to true, page creation will be disabled and the site will only have a single page. + +`templates` is a list of page templates. A template with an ID of `default` is required. The template ID is the name of the template file without the .php extension. For example, SiteWriter loads `home.php` to show a page with the `home` template. + +`colors` is a list of color schemes for the theme. The color ID is the name of the folder where the color-specific assets are stored. A color of `default` is required. If the chosen color is `green`, the color-specific assets should be placed in `colors/green` in the theme folder. + +### Sample `theme.json` + +```js +{ + "name": "My Theme", + "singlepage": false, + "templates": { + "default": { + "title": "Default", + "description": "A regular page." + }, + "home": { + "title": "Home", + "description": "A homepage." + }, + "contact": { + "title": "Contact", + "description": "A contact page." + }, + }, + "colors": { + "default": { + "title": "Default", + "description": "Blue color theme" + }, + "green": { + "title": "Green", + "description": "Green color theme" + } + } +} + +``` + +## Templates + +### `default.php` + +`default.php` is the default template file for a normal page in your theme. It is a standard PHP script containing HTML markup. It should never be loaded directly by a web browser, so you can safely assume theme functions and other SiteWriter theme utilities to be present. + +### `404.php` + +As the name implies, this template is loaded to handle 404 errors. It is not user-selectable as a page template. It should not contain any user-editable fields, as there is currently no way for a user to edit site error pages. + +### `contact.php` + +It is highly recommended to have a contact form template included in your theme. It should contain a standard form that POSTs to `contact.php` with the fields `name`, `email`, and `message`. + +## Template Requirements and Considerations + +Do not use the optional ``, ``, and `` tags for your template HTML. The editor relies on being able to append code to the document and have it still work normally. + +Do include FontAwesome 5 in your theme. The SiteWriter editor allows the user to pick icons from the FontAwesome Free icon set to enhance their content. + +Do include company info (business name, phone number, address, and email) and social media links (Facebook, Twitter, YouTube, Mastodon, etc) in the theme. These can be setup in the sitewide settings, and users will expect themes to make use of this information. + +Do include `` and `` snippets in your templates. They are used to inject additional content into the template, such as third-party analytics code. + +Do copy code from the Bootstrap theme included with SiteWriter. + +## Common Component Names + +To make theme transitions as seamless as possible, try to use the same component names as other themes for equivalent components. + +* Page subtitle: `lead`, plain text +* Page content: `content`, rich text +* Page banner (not page title): `banner-title`, plain text +* Content cards: `cardrow-$i`, rich text (where $i is a number between 1 and 3) +* Action buttons above the fold: `banner-btn-$i`, complex component with icon, link, and text (where $i is 1 or 2) +* Contact form submit button: `submit-btn`, complex component with icon and text + +Consult the included Bootstrap and Verti themes for example usage of these common components. + +## Example Template + +Below is a minimal functional `default` template that fulfills the above requirements. + +```html + + +<?php get_site_name(); ?> + + + + +

+

+
+ +
+

+
+ +
+ +``` + +## Code Snippets + +### Plain Text Component + +```html +

+ +

+``` + +### HTML Component + +```html +
+ +
+``` + +### Complex Component + +```html + + + + + + + +``` + +## Theme Functions + +### `get_site_name($echo = true)` + +Get the name of the website. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_site_url($echo = true)` + +Get the URL of the website. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_page_title($echo = true)` + +Get the page title. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_page_clean_title($echo = true)` + +Get the page title stripped of any HTML. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_page_slug($echo = true)` + +Get the page slug for the current page. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_page_clean_url($echo = true, $slug = null)` + +Get a valid minimal URL for a page. + + * **Parameters:** + * `$echo` — `boolean` — default true + * `$slug` — `string` — page slug, or null for current + * **Returns:** `string` — + +### `get_page_url($echo = true, $slug = null)` + +Get a valid URL for a page. + + * **Parameters:** + * `$echo` — `boolean` — default true + * `$slug` — `string` — page slug, or null for current + * **Returns:** `string` — + +### `get_component($name, $context = null, $echo = true)` + +Echoes or returns the content of a component. + + * **Parameters:** + * `$name` — `string` — component name + * `$context` — `string` — page slug, or null for current + * `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `is_component_empty($name, $context = null)` + +Check if a component is empty of content. + + * **Parameters:** + * `$name` — `string` — component name + * `$context` — `string` — page slug, or null for current + * **Returns:** `boolean` — + +### `get_complex_component($name, $context = null, $include = [])` + +Return the data for a complex component (icon, link, text, image, etc) + + * **Parameters:** + * `$name` — `string` — component name + * `$context` — `string` — page slug, or null for current + * `$include` — `array` — list of properties to include in the output + * **Returns:** `array` — + +### `is_complex_empty($name, $context = null)` + +Check if the specified complex component is empty. + + * **Parameters:** + * `$name` — `string` — + * `$context` — `string` — page slug + * **Returns:** `boolean` — + +### `get_escaped_json($json, $echo = true)` + +Convert a variable into encoded JSON for safe inclusion in an element property. + + * **Parameters:** + * `$json` — or array to convert to JSON + * `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_url_or_slug($str, $echo = true)` + +Detects if a string is a URL or a page slug, and returns something usable for href + + * **Parameters:** + * `$str` — `string` — + * `$echo` — `boolean` — + * **Returns:** `string` — + +### `get_page_content($slug = null)` + +Shortcut for get_component("content"). + + * **Parameters:** `$slug` — `string` — Get the content for the passed page instead of the current. + +### `get_header()` + +Echoes invisible page header content. + +### `get_footer()` + +Echoes invisible page footer content. + +### `get_setting($key, $echo = false)` + +Return or echo the value of the given site setting key, or an empty string if unset. + + * **Parameters:** + * `$key` — `string` — + * `$echo` — `boolean` — default false + * **Returns:** `string` — + +### `get_theme_url($echo = true)` + +Get the URL path for the theme folder, without trailing slash. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_theme_color_url($echo = true)` + +Get the URL base for the selected theme color asset folder, without trailing slash. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_navigation($currentpage = null, $classPrefix = "", $liclass = "", $currentclass = "current", $linkclass = "", $currentlinkclass = "active")` + +Get the page navigation as a string containing a series of `
  • ` elements. + +**Format:** +Current page: +```html +
  • + + Link Text + +
  • +``` +Other pages: +```html +
  • + + Link Text + +
  • +``` + + * **Parameters:** + * `$currentpage` — `string` — The page slug to use for context, or null for current. + * `$classPrefix` — `string` — + * `$liclass` — `string` — + * `$currentclass` — `string` — default "current" + * `$linkclass` — `string` — + * `$currentlinkclass` — `string` — default "active" + +### `output_conditional($content, $var)` + +Replace "[[VAR]]" with the contents of $var and echo $content, but only if $var isn't empty. + + * **Parameters:** + * `$content` — `string` — + * `$var` — `string` — + +### `get_fontawesome_js($echo = true)` + +Echos or returns a URL for the FontAwesome 5 JavaScript. + + * **Parameters:** `$echo` — `boolean` — default true + * **Returns:** `string` — + +### `get_socialmedia_urls()` + +Returns an array of social media URLs, with FontAwesome icon classes and labels. + + * **Returns:** `array` — `[["icon", "name", "url"]]` \ No newline at end of file diff --git a/docs/images/docs-icon.svg b/docs/images/docs-icon.svg new file mode 100644 index 0000000..2912202 --- /dev/null +++ b/docs/images/docs-icon.svg @@ -0,0 +1,117 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/docs/images/logo.svg b/docs/images/logo.svg new file mode 100644 index 0000000..816e640 --- /dev/null +++ b/docs/images/logo.svg @@ -0,0 +1,104 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..3494765 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,23 @@ +# SiteWriter + +SiteWriter is an easy-to-use website design system. + +## Features + +* __Simple Editor__ + * Create awesome websites with zero coding or design experience. + +* __Themes and Templates__ + * Choose from a variety of website themes, color variations, and page templates. + +* __Multi-site__ + * Build and manage multiple websites at the same time + +* __File Manager__ + * Upload pictures and files and add them to your sites with a simple file browser tool. + +* __Analytics__ + * See visitor location, page views, and more with a built-in analytics dashboard. + +* __Contact Forms__ + * Simply create a page with a contact form template and start receiving and replying to messages from a dashboard. \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..fba5432 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,16 @@ +site_name: SiteWriter Docs +theme: + name: 'material' + logo: 'images/logo.svg' + favicon: 'images/docs-icon.svg' + feature: + tabs: false + palette: + primary: 'light-blue' + accent: 'light-blue' +extra_javascript: + - track.js +site_author: Netsyms Technologies +repo_name: 'Business/SiteWriter' +repo_url: 'https://source.netsyms.com/Business/SiteWriter' +copyright: Copyright © 2018 Netsyms Technologies. All rights reserved. Copying is allowed for instructional purposes (such as creating an internal user help document) as long as credit is given and this copyright notice is included. For other purposes, or if you are selling a product containing copied material, please contact us for permission.