diff --git a/bootstrap.js b/bootstrap.js
index 0dd8994..f7289eb 100755
--- a/bootstrap.js
+++ b/bootstrap.js
@@ -1,3 +1,3 @@
// This file is generated automatically, all changes made here will be lost.
-var Bootstrap = {"Templates":{"text":"
\r\n\t\r\n\r\n\r\n\r\n\r\n"},"Doc/Macros":{"text":"# pWiki Macros\r\n\r\n## Syntax\r\n\r\nAny macro can be used in any of the two forms, either _inline_ or _HTML-like_.\r\n\r\nInline:\r\n```\r\n@macro-name(value)\r\n```\r\n\r\nHTML-style:\r\n```\r\n\r\n\r\n\r\n ...text...\r\n\r\n```\r\n\r\nThe two forms are almost identical, with the only difference being that the \r\ninline form does not support body text (note that some macros may provide\r\nthis functionality as an argument, namely `slot`).\r\n\r\nThe two forms exist to fill two distinct functions:\r\n- inline: compatible with attribute values and short\r\n- html-like: element-like, simpler when dealing with html\r\n\r\n### Escaping macros\r\n\r\nMacros can be escaped for inclusion in the page, the two types of macros \r\nare escaped a bit differently:\r\n\r\n- inline macros -- escaped by preceding with a `\\`\r\n\r\n ```\r\n \\\\@include(SomePage)\r\n ```\r\n\r\n Displayed in page as:\r\n\r\n \\@include(SomePage)\r\n\r\n _NOTE: if displayed on github, this will show an extra \"\\\" in both \r\n cases, this should be ignored as pWiki will consume the escaping \"\\\" \r\n in both the code example and the preview._\r\n\r\n\r\n- html-like macros -- escaped _the HTML way_\r\n\r\n ```\r\n <include src=\"SomePage\"\\>\r\n ```\r\n\r\n Displayed in page as:\r\n\r\n <include src=\"SomePage\"\\\\>\r\n\r\n\r\n\r\n\r\n## Macros\r\n\r\n### now ()\r\n\r\nGet current date in seconds since epoch, this is equivalet Javascript's\r\n`Date.now()`.\r\n\r\nThis is mostly used for automatically creating paths (see: todo / outline)\r\n\r\n\r\n### filter (name)\r\n\r\nEnable or disable a page filter.\r\n\r\nA filter is a way to transform the page source.\r\n\r\nArguments:\r\n- `name` -- filter name. If name is preceded with a '-' then it \r\nwill be forced off. This is useful for disabling _default_ filters, or \r\nfilters added previously in templates.\r\n\r\nFilters:\r\n- wikiword (default)\r\n- markdown\r\n\r\nExample:\r\n- `[./_edit]` -- see the macro at the end of the page.\r\n\r\n\r\n### include (src isolated text)\r\n\r\nInclude a page. The included page is rendered independently from current\r\npage and is inserted as-is in macro body.\r\n\r\nNote that this will produce a `include` tag in the code that contains \r\nthe included page, this makes this tag not suitable for use anywhere \r\nbut an html element body.\r\n\r\nArguments:\r\n- `src` -- path to source page.\r\n- `isolated` -- prevent slots from included page from affecting the including page. \r\n- `text` -- is used when recursive include is detected and ignored otherwise.\r\n\r\n### source (src) / quote (src)\r\n\r\nInsert a page without rendering. This is similar to include but will not\r\nrender the page. \r\n\r\nThe difference between `source` and `quote` is:\r\n- _source_ includes the page as-is\r\n- _quotes_ escapes the page (i.e. _quotes_ it's source) for its code to \r\n display in the rendered HTML correctly.\r\n\r\nArguments:\r\n- `src` -- path to source page.\r\n\r\n\r\n\r\n### slot (name text)\r\n\r\nDefine or fill a slot.\r\n\r\nFirst occurrence of a `name` will _define_ a slot and fill it with `text`.\r\nEach new occurrence of a name will change slot content.\r\n\r\n\r\n### macro (name src text) / else ()\r\n\r\nApply macro to source page and include the result.\r\n\r\nThis is similar to include but does not require a separate page.\r\n\r\nBoth `name` and `src` are optional.\r\n\r\nIf `name` is given a _named macro_ is defined. This macro can be later \r\nreferenced (used) by name. A named macro can be redefined/overridden.\r\n\r\nIf `src` is given a macro is applied to a specific page or range of pages\r\n(see: WikiPath).\r\n\r\nFor a macro to be useful it must have a body (`text`), either defined as\r\na named macro or in the current macro.\r\n\r\nArguments:\r\n- `name` -- macro name (optional).\r\n- `src` -- path to source page (optional).\r\n\r\n\r\n`else` macro is applicable inside `macro`. it is used when the `src` path\r\nof `macro` matches no pages.\r\n\r\n\r\n\r\n\r\n"},"Doc/Path":{"text":""},"System/style":{"text":".raw,\r\n.text {\r\n display: block;\r\n}\r\n\r\n.item.checked {\r\n\topacity: 0.3;\r\n}\r\n.item.checked:hover {\r\n\topacity: 0.8;\r\n}\r\n.item.checked .item-content * {\r\n\ttext-decoration: line-through;\r\n}\r\n\r\n.button {\r\n\ttext-decoration: none;\r\n}\r\n.button:last-child {\r\n\tmargin-right: 5px;\r\n}\r\n\r\n.separator~* {\r\n\tfloat: right;\r\n}\r\n\r\n.item:hover {\r\n\tbackground-color: rgba(0, 0, 0, 0.05);\r\n}\r\n.item .button {\r\n\tdisplay: none;\r\n}\r\n.item:hover .button {\r\n\tdisplay: inline-block;\r\n}\r\n\r\n.sort-handle {\r\n\topacity: 0.1;\r\n\tpadding-left: 5px;\r\n\tpadding-right: 5px;\r\n\tcursor: pointer;\r\n\ttext-decoration: none;\r\n}\r\n.item:hover .sort-handle {\r\n\topacity: 0.3;\r\n}\r\n.sort-placeholder {\r\n\tdisplay: block;\r\n}\r\n\r\n/* vim:set ts=4 sw=4 ft=css : */\r\n"},"Templates/all_pages":{"text":"\r\n\t
\r\n \r\n\r\n\r\n\t\r\n\r\n\r\n\r\nhome\r\n\r\n\r\n"},"Doc/About":{"text":"# Portable Wiki (pWiki)\n\n_NOTE: the project is currently in prototype phase, thus while most things \nare likely to change, the implementation / API **will definitely** change! ;)_\n\n### Project goals / main features:\n\n- _Simple embeddable Wiki_\n\n To be used as a zero-workflow app documentation platform, i.e. \n documentation that can be created, edited, tweaked and updated in-app \n without requiring setting up and maintaining a write-convert-embed \n workflow.\n\n This was a requirement on the _ImageGrid.Viewer_ project and as a \n side-effect pWiki hosts it's own documentation too.\n\n- _Pluggable storage and synchronization_ mechanisms\n\n A set of tools and API's to enable data synchronization between pWiki\n instances.\n\n- _Self-hosted_ and flexible user interface\n\n The pWiki interface is implemented as a set of pWiki pages and \n templates within pWiki itself (see: [Templates] / [/bootstrap](bootstrap)), \n this enables the user to customize the look feel and to some extent \n the function of the interface from within pWiki, without touching the \n code.\n\n- pWiki _portable app_\n\n This is a simple note / todo / outline app.\n\n The pWiki app is a stand-alone instance of pWiki wrapped in an app \n supporting all major desktop as well as mobile platforms.\n\n The app serves the following goals:\n\n - a simple and functional note / todo / outline app (obviously)\n - an external/portable Wiki editor, as an alternative for \n in-target-app documentation editor with ability to seamlesly \n synchronize with the target app pWiki instance.\n - a stand-alone testing platform and reference implementation for \n pWiki components.\n\n\n### General Documentation:\n- [Doc/About] / [general info](README.md) -- This document.\n- [Doc/Path] / [bootstrap path](bootstrap/Doc/Path.md) -- Path mechanics.\n- [Doc/Macros] / [bootstrap macros](bootstrap/Doc/Macros.md) -- Macro documentation\n\n\n\n\n"},"WikiHome":{"text":"@include(Doc/About)"}}
\ No newline at end of file
+var Bootstrap = {"Templates":{"text":"
\r\n\t\r\n\r\n\r\n\r\n\r\n"},"Doc/Macros":{"text":"# pWiki Macros\r\n\r\n## Syntax\r\n\r\nAny macro can be used in any of the two forms, either _inline_ or _HTML-like_.\r\n\r\nInline:\r\n```\r\n@macro-name(value)\r\n```\r\n\r\nHTML-style:\r\n```\r\n\r\n\r\n\r\n ...text...\r\n\r\n```\r\n\r\nThe two forms are almost identical, with the only difference being that the \r\ninline form does not support body text (note that some macros may provide\r\nthis functionality as an argument, namely `slot`).\r\n\r\nThe two forms exist to fill two distinct functions:\r\n- inline: compatible with attribute values and short\r\n- html-like: element-like, simpler when dealing with html\r\n\r\n### Escaping macros\r\n\r\nMacros can be escaped for inclusion in the page, the two types of macros \r\nare escaped a bit differently:\r\n\r\n- inline macros -- escaped by preceding with a `\\`\r\n\r\n ```\r\n \\\\@include(SomePage)\r\n ```\r\n\r\n Displayed in page as:\r\n\r\n \\@include(SomePage)\r\n\r\n _NOTE: if displayed on github, this will show an extra \"\\\" in both \r\n cases, this should be ignored as pWiki will consume the escaping \"\\\" \r\n in both the code example and the preview._\r\n\r\n\r\n- html-like macros -- escaped _the HTML way_\r\n\r\n ```\r\n <include src=\"SomePage\"\\>\r\n ```\r\n\r\n Displayed in page as:\r\n\r\n <include src=\"SomePage\"\\\\>\r\n\r\n\r\n\r\n\r\n## Macros\r\n\r\n### now ()\r\n\r\nGet current date in seconds since epoch, this is equivalet Javascript's\r\n`Date.now()`.\r\n\r\nThis is mostly used for automatically creating paths (see: todo / outline)\r\n\r\n\r\n### filter (name)\r\n\r\nEnable or disable a page filter.\r\n\r\nA filter is a way to transform the page source.\r\n\r\nArguments:\r\n- `name` -- filter name. If name is preceded with a '-' then it \r\nwill be forced off. This is useful for disabling _default_ filters, or \r\nfilters added previously in templates.\r\n\r\nFilters:\r\n- wikiword (default)\r\n- markdown\r\n\r\nExample:\r\n- `[./_edit]` -- see the macro at the end of the page.\r\n\r\n\r\n### include (src isolated text)\r\n\r\nInclude a page. The included page is rendered independently from current\r\npage and is inserted as-is in macro body.\r\n\r\nNote that this will produce a `include` tag in the code that contains \r\nthe included page, this makes this tag not suitable for use anywhere \r\nbut an html element body.\r\n\r\nArguments:\r\n- `src` -- path to source page.\r\n- `isolated` -- prevent slots from included page from affecting the including page. \r\n- `text` -- is used when recursive include is detected and ignored otherwise.\r\n\r\n### source (src) / quote (src)\r\n\r\nInsert a page without rendering. This is similar to include but will not\r\nrender the page. \r\n\r\nThe difference between `source` and `quote` is:\r\n- _source_ includes the page as-is\r\n- _quotes_ escapes the page (i.e. _quotes_ it's source) for its code to \r\n display in the rendered HTML correctly.\r\n\r\nArguments:\r\n- `src` -- path to source page.\r\n\r\n\r\n\r\n### slot (name text)\r\n\r\nDefine or fill a slot.\r\n\r\nFirst occurrence of a `name` will _define_ a slot and fill it with `text`.\r\nEach new occurrence of a name will change slot content.\r\n\r\n\r\n### macro (name src text) / else ()\r\n\r\nApply macro to source page and include the result.\r\n\r\nThis is similar to include but does not require a separate page.\r\n\r\nBoth `name` and `src` are optional.\r\n\r\nIf `name` is given a _named macro_ is defined. This macro can be later \r\nreferenced (used) by name. A named macro can be redefined/overridden.\r\n\r\nIf `src` is given a macro is applied to a specific page or range of pages\r\n(see: WikiPath).\r\n\r\nFor a macro to be useful it must have a body (`text`), either defined as\r\na named macro or in the current macro.\r\n\r\nArguments:\r\n- `name` -- macro name (optional).\r\n- `src` -- path to source page (optional).\r\n\r\n\r\n`else` macro is applicable inside `macro`. it is used when the `src` path\r\nof `macro` matches no pages.\r\n\r\n\r\n\r\n\r\n"},"Doc/Path":{"text":""},"System/style":{"text":"body {\r\n\tfont-family: /*worksans,*/ opensans, sans-serif;\r\n}\r\n\r\n.raw,\r\n.text {\r\n display: block;\r\n}\r\n\r\n.item.checked {\r\n\topacity: 0.3;\r\n}\r\n.item.checked:hover {\r\n\topacity: 0.8;\r\n}\r\n.item.checked .item-content * {\r\n\ttext-decoration: line-through;\r\n}\r\n\r\n.button {\r\n\ttext-decoration: none;\r\n}\r\n.button:last-child {\r\n\tmargin-right: 5px;\r\n}\r\n\r\n.separator~* {\r\n\tfloat: right;\r\n}\r\n\r\n.item:hover {\r\n\tbackground-color: rgba(0, 0, 0, 0.05);\r\n}\r\n.item .button {\r\n\tdisplay: none;\r\n}\r\n.item:hover .button {\r\n\tdisplay: inline-block;\r\n}\r\n\r\n.sort-handle {\r\n\topacity: 0.1;\r\n\tpadding-left: 5px;\r\n\tpadding-right: 5px;\r\n\tcursor: pointer;\r\n\ttext-decoration: none;\r\n}\r\n.item:hover .sort-handle {\r\n\topacity: 0.3;\r\n}\r\n.sort-placeholder {\r\n\tdisplay: block;\r\n}\r\n\r\n/* vim:set ts=4 sw=4 ft=css : */\r\n"},"Templates/all_pages":{"text":"\r\n\t
\r\n \r\n\r\n\r\n\t\r\n\r\n\r\n\r\nhome\r\n\r\n\r\n"},"Doc/About":{"text":"# Portable Wiki (pWiki)\n\n_NOTE: the project is currently in prototype phase, thus while most things \nare likely to change, the implementation / API **will definitely** change! ;)_\n\n### Project goals / main features:\n\n- _Simple embeddable Wiki_\n\n To be used as a zero-workflow app documentation platform, i.e. \n documentation that can be created, edited, tweaked and updated in-app \n without requiring setting up and maintaining a write-convert-embed \n workflow.\n\n This was a requirement on the _ImageGrid.Viewer_ project and as a \n side-effect pWiki hosts it's own documentation too.\n\n- _Pluggable storage and synchronization_ mechanisms\n\n A set of tools and API's to enable data synchronization between pWiki\n instances.\n\n- _Self-hosted_ and flexible user interface\n\n The pWiki interface is implemented as a set of pWiki pages and \n templates within pWiki itself (see: [Templates] / [/bootstrap](bootstrap)), \n this enables the user to customize the look feel and to some extent \n the function of the interface from within pWiki, without touching the \n code.\n\n- pWiki _portable app_\n\n This is a simple note / todo / outline app.\n\n The pWiki app is a stand-alone instance of pWiki wrapped in an app \n supporting all major desktop as well as mobile platforms.\n\n The app serves the following goals:\n\n - a simple and functional note / todo / outline app (obviously)\n - an external/portable Wiki editor, as an alternative for \n in-target-app documentation editor with ability to seamlesly \n synchronize with the target app pWiki instance.\n - a stand-alone testing platform and reference implementation for \n pWiki components.\n\n\n### General Documentation:\n- [Doc/About] / [general info](README.md) -- This document.\n- [Doc/Path] / [bootstrap path](bootstrap/Doc/Path.md) -- Path mechanics.\n- [Doc/Macros] / [bootstrap macros](bootstrap/Doc/Macros.md) -- Macro documentation\n\n\n\n\n"},"WikiHome":{"text":"@include(Doc/About)"}}
\ No newline at end of file
diff --git a/bootstrap/System/style.css b/bootstrap/System/style.css
index 1a933c7..079229f 100644
--- a/bootstrap/System/style.css
+++ b/bootstrap/System/style.css
@@ -1,3 +1,7 @@
+body {
+ font-family: /*worksans,*/ opensans, sans-serif;
+}
+
.raw,
.text {
display: block;
diff --git a/css/fonts.css b/css/fonts.css
new file mode 100755
index 0000000..6a96ac2
--- /dev/null
+++ b/css/fonts.css
@@ -0,0 +1,230 @@
+/**********************************************************************
+*
+*
+**********************************************************************/
+
+/* Open Sans
+* - line spacing a bit too large...
+*/
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-Regular.ttf)
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-Bold.ttf)
+ font-weight: bold;
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-Italic.ttf)
+ font-style: italic;
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-BoldItalic.ttf)
+ font-weight: bold;
+ font-style: italic;
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-ExtraBold.ttf)
+ font-weight: bolder;
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf)
+ font-weight: bolder;
+ font-style: italic;
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-Light.ttf)
+ font-weight: lighter;
+}
+@font-face {
+ font-family: OpenSans;
+ src: url(fonts/Open_Sans/OpenSans-LightItalic.ttf)
+ font-weight: lighter;
+ font-style: italic;
+}
+
+
+
+/* Work Sans
+* - does not have an explicit italic face but seems to look ok when
+* slanted programmatically...
+*/
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-Thin.ttf);
+ font-weight: 100;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-ExtraLight.ttf);
+ font-weight: 200;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-Light.ttf);
+ font-weight: 300;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-Regular.ttf);
+ font-weight: 400;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-Medium.ttf);
+ font-weight: 500;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-SemiBold.ttf);
+ font-weight: 600;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-Bold.ttf);
+ font-weight: 700;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-ExtraBold.ttf);
+ font-weight: 800;
+}
+@font-face {
+ font-family: WorkSans;
+ src: url(fonts/Work_Sans/WorkSans-Black.ttf);
+ font-weight: 900;
+}
+
+
+
+/* Source Sans Pro */
+/*
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf)
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf)
+ font-weight: bold;
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf)
+ font-style: italic;
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-BoldItalic.ttf)
+ font-weight: bold;
+ font-style: italic;
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-ExtraBold.ttf)
+ font-weight: bolder;
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-ExtraBoldItalic.ttf)
+ font-weight: bolder;
+ font-style: italic;
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-Light.ttf)
+ font-weight: lighter;
+}
+@font-face {
+ font-family: SourceSansPro;
+ src: url(fonts/Source_Sans_Pro/SourceSansPro-LightItalic.ttf)
+ font-weight: lighter;
+ font-style: italic;
+}
+*/
+
+
+
+/* Arimo
+* - bold face a bit too narrow
+*/
+/*
+@font-face {
+ font-family: Arimo;
+ src: url(fonts/Arimo/Arimo-Regular.ttf)
+}
+@font-face {
+ font-family: Arimo;
+ src: url(fonts/Arimo/Arimo-Bold.ttf)
+ font-weight: bold;
+}
+@font-face {
+ font-family: Arimo;
+ src: url(fonts/Arimo/Arimo-Italic.ttf)
+ font-style: italic;
+}
+@font-face {
+ font-family: Arimo;
+ src: url(fonts/Arimo/Arimo-BoldItalic.ttf)
+ font-weight: bold;
+ font-style: italic;
+}
+*/
+
+
+
+/* Roboto */
+/*
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-Regular.ttf)
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-Bold.ttf)
+ font-weight: bold;
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-Italic.ttf)
+ font-style: italic;
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-BoldItalic.ttf)
+ font-weight: bold;
+ font-style: italic;
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-ExtraBold.ttf)
+ font-weight: bolder;
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-ExtraBoldItalic.ttf)
+ font-weight: bolder;
+ font-style: italic;
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-Light.ttf)
+ font-weight: lighter;
+}
+@font-face {
+ font-family: Roboto;
+ src: url(fonts/Roboto/Roboto-LightItalic.ttf)
+ font-weight: lighter;
+ font-style: italic;
+}
+*/
+
+
+
+/*********************************************************************/
diff --git a/css/fonts/Open_Sans/LICENSE.txt b/css/fonts/Open_Sans/LICENSE.txt
new file mode 100755
index 0000000..75b5248
--- /dev/null
+++ b/css/fonts/Open_Sans/LICENSE.txt
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/css/fonts/Open_Sans/OpenSans-Bold.ttf b/css/fonts/Open_Sans/OpenSans-Bold.ttf
new file mode 100755
index 0000000..fd79d43
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-Bold.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-BoldItalic.ttf b/css/fonts/Open_Sans/OpenSans-BoldItalic.ttf
new file mode 100755
index 0000000..9bc8009
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-BoldItalic.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-ExtraBold.ttf b/css/fonts/Open_Sans/OpenSans-ExtraBold.ttf
new file mode 100755
index 0000000..21f6f84
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-ExtraBold.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf b/css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf
new file mode 100755
index 0000000..31cb688
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-Italic.ttf b/css/fonts/Open_Sans/OpenSans-Italic.ttf
new file mode 100755
index 0000000..c90da48
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-Italic.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-Light.ttf b/css/fonts/Open_Sans/OpenSans-Light.ttf
new file mode 100755
index 0000000..0d38189
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-Light.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-LightItalic.ttf b/css/fonts/Open_Sans/OpenSans-LightItalic.ttf
new file mode 100755
index 0000000..68299c4
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-LightItalic.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-Regular.ttf b/css/fonts/Open_Sans/OpenSans-Regular.ttf
new file mode 100755
index 0000000..db43334
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-Regular.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-Semibold.ttf b/css/fonts/Open_Sans/OpenSans-Semibold.ttf
new file mode 100755
index 0000000..1a7679e
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-Semibold.ttf differ
diff --git a/css/fonts/Open_Sans/OpenSans-SemiboldItalic.ttf b/css/fonts/Open_Sans/OpenSans-SemiboldItalic.ttf
new file mode 100755
index 0000000..59b6d16
Binary files /dev/null and b/css/fonts/Open_Sans/OpenSans-SemiboldItalic.ttf differ
diff --git a/css/fonts/Work_Sans/OFL.txt b/css/fonts/Work_Sans/OFL.txt
new file mode 100755
index 0000000..1067f7c
--- /dev/null
+++ b/css/fonts/Work_Sans/OFL.txt
@@ -0,0 +1,92 @@
+Copyright (c) 2014-2015 Wei Huang (wweeiihhuuaanngg@gmail.com)
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/css/fonts/Work_Sans/WorkSans-Black.ttf b/css/fonts/Work_Sans/WorkSans-Black.ttf
new file mode 100755
index 0000000..3f972d1
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-Black.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-Bold.ttf b/css/fonts/Work_Sans/WorkSans-Bold.ttf
new file mode 100755
index 0000000..7718ada
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-Bold.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-ExtraBold.ttf b/css/fonts/Work_Sans/WorkSans-ExtraBold.ttf
new file mode 100755
index 0000000..e571099
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-ExtraBold.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-ExtraLight.ttf b/css/fonts/Work_Sans/WorkSans-ExtraLight.ttf
new file mode 100755
index 0000000..3798fbe
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-ExtraLight.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-Light.ttf b/css/fonts/Work_Sans/WorkSans-Light.ttf
new file mode 100755
index 0000000..8b03227
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-Light.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-Medium.ttf b/css/fonts/Work_Sans/WorkSans-Medium.ttf
new file mode 100755
index 0000000..137cf56
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-Medium.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-Regular.ttf b/css/fonts/Work_Sans/WorkSans-Regular.ttf
new file mode 100755
index 0000000..ba11a2d
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-Regular.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-SemiBold.ttf b/css/fonts/Work_Sans/WorkSans-SemiBold.ttf
new file mode 100755
index 0000000..5cefd7c
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-SemiBold.ttf differ
diff --git a/css/fonts/Work_Sans/WorkSans-Thin.ttf b/css/fonts/Work_Sans/WorkSans-Thin.ttf
new file mode 100755
index 0000000..47a06ef
Binary files /dev/null and b/css/fonts/Work_Sans/WorkSans-Thin.ttf differ
diff --git a/index.html b/index.html
index 40669d3..83b46d6 100755
--- a/index.html
+++ b/index.html
@@ -3,6 +3,20 @@
pWiki
+
+
+
+
+
+
+
+
+
+
+
+
+
+