diff --git a/Documentation/docs-site/config.toml b/Documentation/docs-site/config.toml index 02d0dd95..ba0d751d 100644 --- a/Documentation/docs-site/config.toml +++ b/Documentation/docs-site/config.toml @@ -1,4 +1,35 @@ -baseURL = "http://fission.io/docs/0.3.0" -languageCode = "en-us" +baseURL = "http://fission.io/docs/0.4.0" +languageCode = "en-US" +defaultContentLanguage = "en" + title = "Fission: Serverless Functions for Kubernetes" -theme = "docdock" +theme = "learn" +metaDataFormat = "yaml" +defaultContentLanguageInSubdir= true + +[params] + editURL = "https://github.com/fission/fission/edit/master/Documentation/docs-site/content/" + description = "Documentation for Fission" + author = "Fission" + showVisitedLinks = true + themeVariant = "fission" + +[outputs] +home = [ "HTML", "RSS", "JSON"] + +[Languages] +[Languages.en] +title = "Serverless Functions for Kubernetes" +weight = 1 +languageName = "English" + +[[Languages.en.menu.shortcuts]] +name = " Github repo" +identifier = "ds" +url = "https://github.com/fission/fission" +weight = 10 + +[[Languages.en.menu.shortcuts]] +name = " Credits" +url = "https://github.com/fission/fission/graphs/contributors" +weight = 11 diff --git a/Documentation/docs-site/content/_header.md b/Documentation/docs-site/content/_header.en.md similarity index 100% rename from Documentation/docs-site/content/_header.md rename to Documentation/docs-site/content/_header.en.md diff --git a/Documentation/docs-site/content/_index.en.md b/Documentation/docs-site/content/_index.en.md new file mode 100644 index 00000000..f9eee575 --- /dev/null +++ b/Documentation/docs-site/content/_index.en.md @@ -0,0 +1,99 @@ +--- +title: Fission +weight: 1 +--- + +Fission: Serverless Functions for Kubernetes +============================================ + +[fission.io](http://fission.io) [@fissionio](http://twitter.com/fissionio) + +Fission is a fast serverless framework for Kubernetes with a focus on +developer productivity and high performance. + +Fission operates on _just the code_: Docker and Kubernetes are +abstracted away under normal operation, though you can use both to +extend Fission if you want to. + +Fission is extensible to any language; the core is written in Go, and +language-specific parts are isolated in something called +_environments_ (more below). Fission currently supports NodeJS, Python, Ruby, Go, +PHP, Bash, and any Linux executable, with more languages coming soon. + +### Performance: 100msec cold start + +Fission maintains a pool of "warm" containers that each contain a +small dynamic loader. When a function is first called, +i.e. "cold-started", a running container is chosen and the function is +loaded. This pool is what makes Fission fast: cold-start latencies +are typically about 100msec. + +### Kubernetes is the right place for Serverless + +We're built on Kubernetes because we think any non-trivial app will +use a combination of serverless functions and more conventional +microservices, and Kubernetes is a great framework to bring these +together seamlessly. + +Building on Kubernetes also means that anything you do for operations +on your Kubernetes cluster — such as monitoring or log +aggregation — also helps with ops on your Fission deployment. + + +Fission Concepts +---------------- + +A _function_ is a piece of code that follows the fission function +interface. + +An _environment_ contains the language- and runtime-specific parts of +running a function. + +The following environments are currently available: + + +| Environment | Image | +| ------------------------------------ | ------------------------- | +| Binary (for executables or scripts) | `fission/binary-env` | +| Go | `fission/go-env` | +| .NET | `fission/dotnet-env` | +| .NET 2.0 | `fission/dotnet20-env` | +| NodeJS (Alpine) | `fission/node-env` | +| NodeJS (Debian) | `fission/node-env-debian` | +| Perl | `fission/perl-env` | +| PHP 7 | `fission/php-env` | +| Python 3 | `fission/python-env` | +| Ruby | `fission/ruby-env` | + + +You can also extend environments or create entirely new +ones if you want. (An environment is essentially just a container +with a webserver and dynamic loader.) + +A _trigger_ is something that maps an event to a function; Fission +supports HTTP routes as triggers today, with upcoming support for +other types of event triggers, such as timers and Kubernetes events. + +Usage +----- + +```bash + + # Add the stock NodeJS env to your Fission deployment + $ fission env create --name nodejs --image fission/node-env + + # A javascript one-liner that prints "hello world" + $ curl https://raw.githubusercontent.com/fission/fission/master/examples/nodejs/hello.js > hello.js + + # Upload your function code to fission + $ fission function create --name hello --env nodejs --code hello.js + + # Map GET /hello to your new function + $ fission route create --method GET --url /hello --function hello + + # Run the function. This takes about 100msec the first time. + $ curl http://$FISSION_ROUTER/hello + Hello, world! +``` + +See the [examples](examples) directory for more. \ No newline at end of file diff --git a/Documentation/docs-site/content/_index.md b/Documentation/docs-site/content/_index.md deleted file mode 100644 index d09b9a44..00000000 --- a/Documentation/docs-site/content/_index.md +++ /dev/null @@ -1,6 +0,0 @@ -## Fission Documentation - - * [Installation guide](install) - - * [Upgrade guide for v0.3 to v0.4](upgrade-from-v0.3) - \ No newline at end of file diff --git a/Documentation/docs-site/content/compilation/_index.en.md b/Documentation/docs-site/content/compilation/_index.en.md new file mode 100644 index 00000000..57e365b2 --- /dev/null +++ b/Documentation/docs-site/content/compilation/_index.en.md @@ -0,0 +1,56 @@ +--- +title: "Compiling Fission" +date: 2017-09-07T20:10:05-07:00 +draft: false +weight: 1 +--- + +[You only need to do this if you're making Fission changes; if you're +just deploying Fission, use fission.yaml which points to prebuilt +images.] + +You'll need the `go` compiler and tools installed, along with the +[glide dependency management +tool](https://github.com/Masterminds/glide#install). You'll also need +docker for building images. + +The server side is compiled as one binary ("fission-bundle") which +contains controller, poolmgr and router; it invokes the right one +based on command-line arguments. + +To build fission-bundle: clone this repo to +`$GOPATH/src/github.com/fission/fission`, then from the top level +directory (if you want to build the image with the docker inside +minikube, you'll need to set the proper environment variables with +`eval $(minikube docker-env)`): + +``` + # Get dependencies + $ glide install + + # Build fission server and an image + $ pushd fission-bundle + $ ./build.sh +``` + +You now need to build the docker image for fission. You can use +`push.sh` and push it to a docker hub account. But it's easiest to use +minikube and its built-in docker daemon: + +``` + $ eval $(minikube docker-env) + $ docker build -t minikube/fission-bundle . +``` + +Next, install fission with this image on your kubernetes cluster using the helm chart: + +``` + $ helm install --set "image=minikube/fission-bundle,pullPolicy=IfNotPresent,analytics=false" charts/fission-all +``` + +And if you're changing the CLI too, you can build it with: + +``` + # Build Fission CLI + $ cd fission && go install +``` \ No newline at end of file diff --git a/Documentation/docs-site/content/install.md b/Documentation/docs-site/content/installation/_index.en.md similarity index 99% rename from Documentation/docs-site/content/install.md rename to Documentation/docs-site/content/installation/_index.en.md index 1bedef54..6c22f0f6 100644 --- a/Documentation/docs-site/content/install.md +++ b/Documentation/docs-site/content/installation/_index.en.md @@ -1,7 +1,8 @@ --- -title: "Fission Installation Guide" +title: "Installation Guide" date: 2017-09-07T20:10:05-07:00 draft: false +weight: 20 --- Welcome! This guide will get you up and running with Fission on a diff --git a/Documentation/docs-site/content/kubernetessetup.md b/Documentation/docs-site/content/prerequisite/_index.en.md similarity index 99% rename from Documentation/docs-site/content/kubernetessetup.md rename to Documentation/docs-site/content/prerequisite/_index.en.md index b57a2c5a..a2d79bc1 100644 --- a/Documentation/docs-site/content/kubernetessetup.md +++ b/Documentation/docs-site/content/prerequisite/_index.en.md @@ -1,7 +1,7 @@ --- title: "Kubernetes Quick Install" date: 2017-09-07T20:10:05-07:00 -draft: false +weight: 10 --- This is a quick guide to help you get started running Kubernetes on diff --git a/Documentation/docs-site/content/upgrade/_index.en.md b/Documentation/docs-site/content/upgrade/_index.en.md new file mode 100644 index 00000000..7f56cfb0 --- /dev/null +++ b/Documentation/docs-site/content/upgrade/_index.en.md @@ -0,0 +1,12 @@ +--- +title: "Upgrade" +date: 2017-09-07T20:10:05-07:00 +weight: 30 +--- + +### From v0.1 to v0.2.x + +* [Upgade guide](upgrade-from-v0.1) + +### From v0.3 to v0.4.x +* [Upgrade guide](upgrade-from-v0.3) \ No newline at end of file diff --git a/Documentation/docs-site/content/upgrade-from-v0.1.md b/Documentation/docs-site/content/upgrade/upgrade-from-v0.1.md similarity index 98% rename from Documentation/docs-site/content/upgrade-from-v0.1.md rename to Documentation/docs-site/content/upgrade/upgrade-from-v0.1.md index ac56cd0d..ea085029 100644 --- a/Documentation/docs-site/content/upgrade-from-v0.1.md +++ b/Documentation/docs-site/content/upgrade/upgrade-from-v0.1.md @@ -1,7 +1,8 @@ --- -title: "Upgrading from Fission v0.1 to v0.2.x" +title: "Upgrading from v0.1 to v0.2.x" date: 2017-09-08T16:26:29-07:00 draft: false +weight: 31 --- ## TL;DR diff --git a/Documentation/docs-site/content/upgrade-from-v0.3.md b/Documentation/docs-site/content/upgrade/upgrade-from-v0.3.md similarity index 98% rename from Documentation/docs-site/content/upgrade-from-v0.3.md rename to Documentation/docs-site/content/upgrade/upgrade-from-v0.3.md index 00478c37..9cd4bec5 100644 --- a/Documentation/docs-site/content/upgrade-from-v0.3.md +++ b/Documentation/docs-site/content/upgrade/upgrade-from-v0.3.md @@ -1,7 +1,8 @@ --- -title: "Upgrading from Fission v0.3 to v0.4.x" +title: "Upgrading from v0.3 to v0.4.x" date: 2017-11-04T03:38:29+08:00 draft: false +weight: 32 --- ## Introduction diff --git a/Documentation/docs-site/static/images/favicon.png b/Documentation/docs-site/static/images/favicon.png new file mode 100644 index 00000000..3e6328e5 Binary files /dev/null and b/Documentation/docs-site/static/images/favicon.png differ diff --git a/Documentation/docs-site/static/images/fission-logo.png b/Documentation/docs-site/static/images/fission-logo.png new file mode 100644 index 00000000..d0687c4f Binary files /dev/null and b/Documentation/docs-site/static/images/fission-logo.png differ diff --git a/Documentation/docs-site/themes/docdock/.gitignore b/Documentation/docs-site/themes/docdock/.gitignore deleted file mode 100644 index 9381b76c..00000000 --- a/Documentation/docs-site/themes/docdock/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -public/ diff --git a/Documentation/docs-site/themes/docdock/README.md b/Documentation/docs-site/themes/docdock/README.md deleted file mode 100644 index f1a00e33..00000000 --- a/Documentation/docs-site/themes/docdock/README.md +++ /dev/null @@ -1,34 +0,0 @@ -# Hugo docDock Theme - -This repository contains a theme for [Hugo](https://gohugo.io/), based on great [Matcornic Learn theme](https://github.com/matcornic/hugo-theme-learn/). - -Visit the [theme documentation](http://docdock.netlify.com/) to see what is going on. It is actually built with this theme. - -# Main features - -- Search -- **Unlimited menu levels** -- RevealJS presentation from markdown (embededed or fullscreen page) -- Attachments files -- List child pages -- Include segment of content from one page in another (Excerpt) -- Automatic next/prev buttons to navigate through menu entries -- Mermaid diagram -- Icons, Buttons, Alerts, Panels, Tip/Note/Info/Warning boxes -- Image resizing, shadow... -- Customizable look and feel - -## Installation -Navigate to your themes folder in your Hugo site and use the following commands: -``` -$ cd themes -$ git clone https://github.com/vjeantet/hugo-theme-docdock.git docdock -``` - -Check that your Hugo version is minimum `0.25` with `hugo version`. - -![Overview](https://github.com/vjeantet/hugo-theme-docdock/raw/master/images/tn.png) - -## Usage - -- [Visit the documentation](http://docdock.netlify.com/) \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/archetypes/default.md b/Documentation/docs-site/themes/docdock/archetypes/default.md deleted file mode 100644 index dd9d7941..00000000 --- a/Documentation/docs-site/themes/docdock/archetypes/default.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title= "{{ replace .TranslationBaseName "-" " " | title }}" -date= {{ .Date }} -description = "" -draft= true -+++ - -Lorem Ipsum. -Notice `draft` is set to true. diff --git a/Documentation/docs-site/themes/docdock/archetypes/slide.md b/Documentation/docs-site/themes/docdock/archetypes/slide.md deleted file mode 100644 index e40a913d..00000000 --- a/Documentation/docs-site/themes/docdock/archetypes/slide.md +++ /dev/null @@ -1,46 +0,0 @@ -+++ -title = "Slide title" -type="slide" - -theme = "league" -[revealOptions] -transition= 'concave' -controls= true -progress= true -history= true -center= true -+++ - -# Slide 1 - -___ - -## Slide 1.1 - -- Turn off alarm -- Get out of bed - -___ - -## Slide 1.2 - -- Eat eggs -- Drink coffee - ---- - -# Slide 2 - -___ - -## Slide 2.1 - -- Eat spaghetti -- Drink wine - -___ - -## Slide 2.2 - -- Get in bed -- Count sheep \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/config.toml b/Documentation/docs-site/themes/docdock/exampleSite/config.toml deleted file mode 100644 index e229f9ce..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/config.toml +++ /dev/null @@ -1,43 +0,0 @@ -baseURL = "/" -languageCode = "en-us" -DefaultContentLanguage = "en" - -title = "Docdock" -theme = "hugo-theme-docdock" -themesdir = "../.." - -[params] -editURL = "https://github.com/vjeantet/hugo-theme-docdock/edit/master/exampleSite/content/" -noHomeIcon = false # default is false -noSearch = false # default is false -showVisitedLinks = true # default is false -# themeStyle = "theme" # overide base css -themeVariant = "" # choose theme variant "green", "gold" , "gray", "blue" (default) -ordersectionsby = "weight" # ordersectionsby = "title" - -[outputs] -home = [ "HTML", "RSS", "JSON"] - - -[[menu.shortcuts]] -pre = "

More

" -name = " Github repo" -identifier = "ds" -url = "https://github.com/vjeantet/hugo-theme-docdock" -weight = 10 - -[[menu.shortcuts]] -name = " Showcases" -url = "/showcase" -weight = 11 - -[[menu.shortcuts]] -name = " Hugo Documentation" -identifier = "hugodoc" -url = "https://gohugo.io/" -weight = 20 - -[[menu.shortcuts]] -name = " Credits" -url = "/credits" -weight = 30 \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/_header.md b/Documentation/docs-site/themes/docdock/exampleSite/content/_header.md deleted file mode 100644 index 36f73f83..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/_header.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "header" -description = "" -date = "2017-04-24T18:36:24+02:00" -+++ -DocDock Documentation \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/_index.md deleted file mode 100644 index e67c7332..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/_index.md +++ /dev/null @@ -1,47 +0,0 @@ -+++ -title = "DocDock Theme for Hugo" -description = "" -date = "2017-04-24T18:36:24+02:00" - -+++ - -# Hugo docDock theme -[Hugo-theme-docdock {{%icon fa-github%}}](https://github.com/vjeantet/hugo-theme-docdock) is a theme for Hugo, a fast and modern static website engine written in Go. Hugo is often used for blogs, **this theme is fully designed for documentation.** - -This theme is a partial porting of the [Learn theme of matcornic {{%icon fa-github%}}](https://github.com/matcornic/hugo-theme-learn). - -{{%panel%}}docDock works with a "page tree structure" to organize content : All contents are pages, which belong to other pages. [read more about this]({{%relref "content-organisation/_index.md"%}}) {{%/panel%}} - -## Main features - -* [Search]({{%relref "search/_index.md" %}}) -* **Unlimited menu levels** -* [Generate RevealJS presentation]({{%relref "page-slide.md"%}}) from markdown (embededed or fullscreen page) -* Automatic next/prev buttons to navigate through menu entries -* [Image resizing, shadow...]({{%relref "create-page/page-images.md" %}}) -* [Attachments files]({{%relref "shortcodes/attachments.md" %}}) -* [List child pages]({{%relref "shortcodes/children/_index.md" %}}) -* [Excerpt]({{%relref "shortcodes/excerpt.md"%}}) ! Include segment of content from one page in another -* [Mermaid diagram]({{%relref "shortcodes/mermaid.md" %}}) (flowchart, sequence, gantt) -* [Icons]({{%relref "shortcodes/icon.md" %}}), [Buttons]({{%relref "shortcodes/button.md" %}}), [Alerts]({{%relref "shortcodes/alert.md" %}}), [Panels]({{%relref "shortcodes/panel.md" %}}), [Tip/Note/Info/Warning boxes]({{%relref "shortcodes/notice.md" %}}), [Expand]({{%relref "shortcodes/expand.md" %}}) -* [customizable look and feel]({{%relref "content-organisation/customize-style/_index.md"%}}), [theme variants]({{%relref "content-organisation/customize-style/theme-variants.md"%}}) - - - - -![](https://raw.githubusercontent.com/vjeantet/hugo-theme-docdock/master/images/tn.png?width=33pc&classes=border,shadow) - -## Contribute to this documentation -Feel free to update this content, just click the **Edit this page** link displayed on top right of each page, and pullrequest it -{{%alert%}}Your modification will be deployed automatically when merged.{{%/alert%}} - - -## Documentation website -This current documentation has been statically generated with Hugo with a simple command : `hugo -t docdock` -- source code is [available here at GitHub {{%icon fa-github%}}](https://github.com/vjeantet/hugo-theme-docDock) - -{{% panel theme="success" header="Automated deployments" footer="Netlify builds, deploys, and hosts frontends." %}} -Automatically published and hosted thanks to [Netlify](https://www.netlify.com/). - -Read more about [Automated HUGO deployments with Netlify](https://www.netlify.com/blog/2015/07/30/hosting-hugo-on-netlifyinsanely-fast-deploys/) -{{% /panel %}} - diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/_index.md deleted file mode 100644 index df428154..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/_index.md +++ /dev/null @@ -1,138 +0,0 @@ -+++ -title = "Content Organisation" -description = "" -weight = 20 -+++ - -With **Hugo**, pages are the core of your site. Organize your site like any other Hugo project. **Magic occurs with the nested sections implemention done in v0.22 of hugo (congrats @bep)**. - -With docdock, **Each content page composes the menu**, they shape the structure of your website. - -To link pages to each other, place them in a folders hierarchy - -``` -content -├── level-one -│ ├── level-two -│ │ ├── level-three -│ │ │ ├── level-four -│ │ │ │ ├── _index.md -│ │ │ │ ├── page-4-a.md -│ │ │ │ ├── page-4-b.md -│ │ │ │ └── page-4-c.md -│ │ │ ├── _index.md -│ │ │ ├── page-3-a.md -│ │ │ ├── page-3-b.md -│ │ │ └── page-3-c.md -│ │ ├── _index.md -│ │ ├── page-2-a.md -│ │ ├── page-2-b.md -│ │ └── page-2-c.md -│ ├── _index.md -│ ├── page-1-a.md -│ ├── page-1-b.md -│ └── page-1-c.md -├── _index.md -└── page-top.md -``` - - -{{%alert info %}} **_index.md** is required in each folder, it's your "folder home page"{{%/alert%}} - -### Add header to a menu entry - -in the page frontmatter, add a `head` param to insert any HTML code before the menu entry: - -example to display a "Hello" - - +++ - title = "Github repo" - head =" " - +++ - - - -### Add icon to a menu entry - -in the page frontmatter, add a `pre` param to insert any HTML code before the menu label: - -example to display a github icon - - +++ - title = "Github repo" - pre =" " - +++ - -![dsf](/menu-entry-icon.png?height=40px&classes=shadow) - - - - -### Order sibling menu/page entries - -in your frontmatter add `weight` param with a number to order. - - +++ - title="My page" - weight = 4 - +++ - -{{%info%}}add `ordersectionsby = "title"` in your config.toml to order menu entries by title{{%/info%}} - - -### Hide a menu entry - -in your frontmatter add `hidden=true` param. - - +++ - title="My page" - hidden = true - +++ - - -### Unfolded menu entry by default - -One or more menuentries can be displayed unfolded by default. (like the "Getting start" menu entry in this website) - -in your frontmatter add `alwaysopen=true` param. -example : - -``` -title = "Getting start" -description = "" -weight = 1 -alwaysopen = true -``` - -### Folder structure and file name - -Content organization **is** your `content` folder structure. - -### Homepage - -Find out how to [customize homepage]({{%relref "homepage.md"%}}) - - - diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/customize-style/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/customize-style/_index.md deleted file mode 100644 index 387ba2a9..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/customize-style/_index.md +++ /dev/null @@ -1,40 +0,0 @@ -+++ -title = "Customize website look and feel" -Weight=3 -+++ - -You can change the style and behavior of the theme without touching it. - -* inject your own html, css or js into the page -* overide existing css or js with your own files - -## Inject your HTML - -### into the \ part of each page : - -Create a `custom-head.html` into a `layouts/partials` folder next to the content folder - -> * content/ -> * layouts/ -> * partials/ -> * custom-head.html - -now feel free to add the JS, CSS, HTML code you want :) - -### at the end of the body part of each page : - -Create a `custom-footer.html` into a `layouts/partials` folder next to the content folder - -> * content/ -> * layouts/ -> * partials/ -> * custom-footer.html - -now feel free to add the JS, CSS, HTML code you want :) - -## overide existing CSS or JS - -Create the matching file in your static folder, hugo will use yours instead of the theme's one. -Example : - -create a theme.css and place it into `static/css/` to fully overide docdock's theme.css diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/customize-style/theme-variants.md b/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/customize-style/theme-variants.md deleted file mode 100644 index 23e76199..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/customize-style/theme-variants.md +++ /dev/null @@ -1,35 +0,0 @@ -+++ -title = "Theme variants" -description = "change theme style/colors" -+++ - -In site configuration file, you can set a variant name of this theme to load a specific css, with different color specifications. - -add a param `themeVariant = "VARIANT_NAME"` in the `[params]` part of config.toml file. - -{{%info%}}Available variants change only colors at this moment{{%/info%}} - - -## Variant "gray" -``` -[params] -themeVariant = "gray" -``` - -![green docdock](/variant-gray.png) - -## Variant "gold" -``` -[params] -themeVariant = "gold" -``` - -![gold docdock](/variant-gold.png) - -## Variant "green" -``` -[params] -themeVariant = "green"` -``` - -![green docdock](/variant-green.png) \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/extramenu.md b/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/extramenu.md deleted file mode 100644 index 0dd06987..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/extramenu.md +++ /dev/null @@ -1,28 +0,0 @@ -+++ -title = "Extra menu entries" -date = "2017-04-29T18:36:24+02:00" -Weight=2 -+++ - -You can define additional menu entries in the navigation menu without any link to content. - -Edit the website configuration `config.toml` and add a `[[menu.shortcuts]]` entry for each link your want to add. - - -Example from the current website, **note the `pre` param** which allows you to insert HTML code and used here to separate content's menu from this "static" menu - - [[menu.shortcuts]] - pre = "

More

" - name = " Github repo" - identifier = "ds" - url = "https://github.com/vjeantet/hugo-theme-docdock" - weight = 1 - - [[menu.shortcuts]] - name = " Hugo Documentation" - identifier = "hugodoc" - url = "https://gohugo.io/" - weight = 2 - - -[{{%icon circle-arrow-right%}} Read more about hugo and menu here](https://gohugo.io/extras/menus/) \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/logo.md b/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/logo.md deleted file mode 100644 index aeb18c6b..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/content-organisation/logo.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "Logo placeholder" -description = "" -date = "2017-04-24T18:36:24+02:00" -Weight=1 -+++ - -Create a `_header.md` page in content folder. Its content is what you get in the logo placeholder (top left of the screen). - -{{%alert info%}}**Tip :** you can add a image, a combobox with links to other documentation....{{%/alert%}} - -{{%alert info%}}**Tip 2 :** look at [ extra static menu]({{%relref "extramenu.md"%}}) if you want to add links to other website in this sidebar{{%/alert%}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/_index.md deleted file mode 100644 index 0073f939..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/_index.md +++ /dev/null @@ -1,54 +0,0 @@ -+++ -title = "Create Page" -description = "" -date = "2017-04-24T18:36:24+02:00" -creatordisplayname = "Valere JEANTET" -creatoremail = "valere.jeantet@gmail.com" -lastmodifierdisplayname = "Valere JEANTET" -lastmodifieremail = "valere.jeantet@gmail.com" -tags = ["tag1","tag2"] -weight = 10 -pre =" " - -+++ - - -Hugo-theme-docdock defines two types of pages. _Default_ and _Slide_. - -* **Default** is the common page like the current one you are reading. -* **Slide** is a page that use the full screen to display its markdown content as a [reveals.js presentation](http://lab.hakim.se/reveal-js/). -* **HomePage** is a special content that will be displayed as home page content. - -To tell Hugo-theme-docdock to consider a page as a slide, just add a `type="slide"`in then frontmatter of your file. [{{%icon circle-arrow-right%}}read more on page as slide]({{%relref "page-slide.md"%}}) - - -Hugo-theme-docdock provides archetypes to help you create this kind of pages. - - -## Front Matter -Each Hugo page has to define a Front Matter in yaml, toml or json. - -Hugo-theme-docdock uses the following parameters on top of the existing ones : - - +++ - # Type of content, set "slide" to display it fullscreen with reveal.js - type="page" - - # Creator's Display name - creatordisplayname = "Valere JEANTET" - # Creator's Email - creatoremail = "valere.jeantet@gmail.com" - # LastModifier's Display name - lastmodifierdisplayname = "Valere JEANTET" - # LastModifier's Email - lastmodifieremail = "valere.jeantet@gmail.com" - +++ - - -## Ordering - -Hugo provides a flexible way to handle order for your pages. - -The simplest way is to use `weight` parameter in the front matter of your page. - -[{{%icon circle-arrow-right%}}Read more on content organization]({{%relref "content-organisation/_index.md"%}}) diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/homepage.md b/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/homepage.md deleted file mode 100644 index ed0b5bc0..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/homepage.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "Home page" -description = "" -date = "2017-04-28T18:36:24+02:00" -tags = ["tag1","tag2"] -+++ - -To tell Hugo-theme-docdock to consider a page as homepage's content, just create a content file named `_index.md` in content folder. diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/myslide.md b/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/myslide.md deleted file mode 100644 index 1f611bc6..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/myslide.md +++ /dev/null @@ -1,48 +0,0 @@ -+++ -title = "My Slide ! fullscreen" -date = "2017-04-24T18:36:24+02:00" -type="slide" -hidden=true - -theme = "league" -[revealOptions] -transition= 'concave' -controls= true -progress= true -history= false -center= true -+++ - -# In the morning - -___ - -## Getting up - -- Turn off alarm -- Get out of bed - -___ - -## Breakfast - -- Eat eggs -- Drink coffee - ---- - -# In the evening - -___ - -## Dinner - -- Eat spaghetti -- Drink wine - -___ - -## Going to sleep - -- Get in bed -- Count sheep \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/page-images.md b/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/page-images.md deleted file mode 100644 index a395844b..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/page-images.md +++ /dev/null @@ -1,28 +0,0 @@ -+++ -title = "About images" -date = "2017-04-24T18:36:24+02:00" -+++ - -Images have a similar syntax to links but include a preceding exclamation point. - - ![agence](https://github.com/vjeantet/vjeantet.fr/raw/master/static/images/sgthon/C.jpg) - -![agence](https://github.com/vjeantet/vjeantet.fr/raw/master/static/images/sgthon/C.jpg) - -## Resizing image - -Add HTTP parameters `width` and/or `height` to the link image to resize the image. Values are CSS values (default is `auto`). - - - ![Hackathon](https://github.com/vjeantet/vjeantet.fr/raw/master/static/images/sgthon/C.jpg?height=80px) - -![agence](https://github.com/vjeantet/vjeantet.fr/raw/master/static/images/sgthon/C.jpg?height=80px) - - -## Add CSS classes - -Add a HTTP `classes` parameter to the link image to add CSS classes. `shadow` and `border` are available but you could define other ones. - - ![s](https://github.com/vjeantet/vjeantet.fr/raw/master/static/images/sgthon/C.jpg?classes=border,shadow) - -![agence](https://github.com/vjeantet/vjeantet.fr/raw/master/static/images/sgthon/C.jpg?classes=border,shadow) diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/page-slide.md b/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/page-slide.md deleted file mode 100644 index 5c3c351e..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/create-page/page-slide.md +++ /dev/null @@ -1,114 +0,0 @@ -+++ -title = "Present a Slide" -description = "" -date = "2017-04-24T18:36:24+02:00" -+++ - -A basic md content page can be rendered as a reveal.js presentation full screen. - -{{%alert info%}}You can, also, **embed presentation in a page** as a small box, using the [revealjs]({{% relref "shortcodes/revealjs.md"%}}) shortcode in your md file.{{%/alert%}} - - -## Formating -Use your common Markdown syntax you use in Hugo, don't forget, you can put html tags too. - -{{%notice info %}} Special syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things. -{{%/notice%}} - -Please read the [{{%icon book%}} doc from hakimel](https://github.com/hakimel/reveal.js/#instructions) - - -## Options -In the frontmatter of your page file, set **type** and **revealOptions** params - -Your content will be served as a fullscreen revealjs presentation and revealOptions will be used to ajust its behaviour. - - +++ - title = "Test slide" - type="slide" - - theme = "league" - [revealOptions] - transition= 'concave' - controls= true - progress= true - history= true - center= true - +++ - -[read more about reveal options here](https://github.com/hakimel/reveal.js/#configuration) - - -## Slide Delimiters -When creating the content for your slideshow presentation within content markdown file you need to be able to distinguish between one slide and the next. This is achieved very simply using a convention within Markdown that indicates the start of each new slide. - -As both horizontal and vertical slides are supported by reveal.js each has it's own unique delimiter. - -To denote the start of a horizontal slide simply add the following delimiter in your Markdown: - - --- - - -To denote the start of a vertical slide simply add the following delimiter in your Markdown: - - ___ - -By using a combination of horizontal and vertical slides you can customize the navigation within your slideshow presentation. Typically vertical slides are used to present information below a top-level horizontal slide. - - - -For example, a very simple slideshow presentation can be created as follows - -``` -+++ - -title = "test" -date = "2017-04-24T18:36:24+02:00" -type="slide" - -theme = "league" -[revealOptions] -transition= 'concave' -controls= true -progress= true -history= true -center= true -+++ - -# In the morning - -___ - -## Getting up - -- Turn off alarm -- Get out of bed - -___ - -## Breakfast - -- Eat eggs -- Drink coffee - ---- - -# In the evening - -___ - -## Dinner - -- Eat spaghetti -- Drink wine - -___ - -## Going to sleep - -- Get in bed -- Count sheep - -``` - -[{{%icon expand%}}click here to view this page rendered]({{%relref "myslide.md"%}}) \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/_index.md deleted file mode 100644 index 9d4e0e4c..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/_index.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "Getting start" -description = "" -weight = 1 -alwaysopen = true -+++ - -## Requirements - -Download [Hugo binary](https://gohugo.io/overview/installing/) for your OS (Windows, Linux, Mac) : it’s that simple - -{{%children style="h2" description="true"%}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/configuration.md b/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/configuration.md deleted file mode 100644 index 75644b7c..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/configuration.md +++ /dev/null @@ -1,26 +0,0 @@ -+++ -title = "Configuration" -description = "" -weight = 2 -+++ - -When building the website, you can set a theme by using `--theme` option. We suggest you to edit your configuration file and set the theme by default. Example with `config.toml` format. - -``` -theme = "docdock" -``` - -## Search index generation - -Add the follow line in the same `config.toml` file. - -``` -[outputs] -home = [ "HTML", "RSS", "JSON"] -``` - -LUNRJS search index file will be generated on content changes. - -## Your website's content - -Find out how to [create]({{%relref "create-page/_index.md"%}}) and [organize your content]({{%relref "content-organisation/_index.md"%}}) quickly and intuitively. \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/installation.md b/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/installation.md deleted file mode 100644 index 9850f657..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/getting-start/installation.md +++ /dev/null @@ -1,31 +0,0 @@ -+++ -title = "Installation" -description = "" -weight = 1 -+++ - -{{% alert theme="warning" %}}HUGO **v0.25** minimum required to use this theme{{%/alert%}} - -The following steps are here to help you initialize your new website. If you don’t know Hugo at all, we strongly suggest you to train by following this [great documentation for beginners](https://gohugo.io/overview/quickstart/). - - -## Create Your Documentation - -Hugo provides a `new` command to create a new website. - - $ hugo new site - -## Install The Theme - -Install the **Hugo-theme-docdock** theme by following this - -Switch into the themes directory and download the theme - - $ cd themes - $ git clone https://github.com/vjeantet/hugo-theme-docdock.git docdock - -Alternatively, you can [{{%icon download%}} download the theme as .zip](https://github.com/vjeantet/hugo-theme-docdock/archive/master.zip) file and extract it in the themes directory - -## Basic Configuration - -[Follow instructions here]({{%relref "configuration.md"%}}) \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/search/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/search/_index.md deleted file mode 100644 index 2c886ca4..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/search/_index.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "About the Search Engine" -description = "" -weight = 40 -+++ - -**Nothing to do on your side. :-)** - -Docdock theme uses the last improvement available in hugo version 20+ to generate a json index file ready to be consumed by lunr.js javascript search engine. - -{{%note%}}hugo generate lunrjs index.json at the root of `public` folder.
When you build the site with `hugo server`, hugo generates it internally and of course it don't show up in the filesystem{{%/note%}} diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/_index.md b/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/_index.md deleted file mode 100644 index fd65feb4..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/_index.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "Shortcodes" -description = "" -date = "2017-04-24T18:36:24+02:00" -weight = 30 -+++ - -A bunch of Shortcodes are available with this theme : - -{{%children style="h2" description="true" %}} diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/alert.md b/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/alert.md deleted file mode 100644 index d69e3ddf..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/alert.md +++ /dev/null @@ -1,30 +0,0 @@ -+++ -title = "alert" -description = "The alert shortcode allows you to highlight information in your page." -+++ - -The `alert` shortcode allow you to highlight information in your page. They create a colored box surrounding your text, like this: - -{{%alert%}}**This is** an alert !{{%/alert%}} -## Usage - -| Parameter | Default | Description | -|:--|:--|:--| -| theme | `info` | `success`, `info`,`warning`,`danger` | - -{{%alert info%}} -**Tips :** setting only the theme as argument works too : -`{{%/*alert warning*/%}}` instead of `{{%/*alert theme="warning"*/%}}` -{{%/alert%}} - -## Basic examples - - {{%/* alert theme="info" */%}}**this** is a text{{%/* /alert */%}} - {{%/* alert theme="success" */%}}**Yeahhh !** is a text{{%/* /alert */%}} - {{%/* alert theme="warning" */%}}**Be carefull** is a text{{%/* /alert */%}} - {{%/* alert theme="danger" */%}}**Beware !** is a text{{%/* /alert */%}} - -{{% alert theme="info"%}}**this** is an info{{% /alert %}} -{{% alert theme="success" %}}**Yeahhh !** is an success{{% /alert %}} -{{% alert theme="warning" %}}**Be carefull** is a warning{{% /alert %}} -{{% alert theme="danger" %}}**Beware !** is a danger{{% /alert %}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/button.md b/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/button.md deleted file mode 100644 index 59d498ff..00000000 --- a/Documentation/docs-site/themes/docdock/exampleSite/content/shortcodes/button.md +++ /dev/null @@ -1,37 +0,0 @@ -+++ -title = "button" -description = "Display an actionable button in your page." -+++ - -Display an actionable button in your page. - -{{ -{{ with .Get "align" }}{{end}} - - \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/code.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/code.html deleted file mode 100644 index 12c13bdd..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/code.html +++ /dev/null @@ -1 +0,0 @@ -
{{.Inner}}
\ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/emoticon.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/emoticon.html deleted file mode 100644 index d1497fa3..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/emoticon.html +++ /dev/null @@ -1,29 +0,0 @@ -{{ $name := .Get "name"}} - -{{ if eq "smile" $name}} -😀 -{{ else if eq "sad" $name}} -🙁 -{{ else if eq "cheeky" $name}} -😛 -{{ else if eq "laugh" $name}} -😃 -{{ else if eq "wink" $name}} -😉 -{{ else if eq "thumbs-up" $name}} - -{{ else if eq "thumbs-down" $name}} - -{{ else if eq "information" $name}} - -{{ else if eq "tick" $name}} - -{{ else if eq "cross" $name}} - -{{ else if eq "warning" $name}} - -{{else}} -( Emoticon: {{$name}} ) -{{end}} - -{{.Inner}} diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/excerpt-include.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/excerpt-include.html deleted file mode 100644 index 2327e9fb..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/excerpt-include.html +++ /dev/null @@ -1,14 +0,0 @@ -{{ $excerpt := findRE "(?ms){{%\\s*excerpt[^%]*%}}(.|\n)*?{{%\\s*/excerpt\\s*%}}" ( readFile (printf "./content/%s" (.Get "filename")) ) }} -{{ range $excerpt }} - {{if ($.Get "panel")}} -
-
{{$.Get "panel"}}
-
- {{ (replaceRE "(?ms){{%\\s*excerpt[^%]*%}}(.*){{%\\s*/excerpt\\s*%}}" "$1" .) | safeHTML | markdownify }} -
-
- {{else}} - {{ (replaceRE "(?ms){{%\\s*excerpt[^%]*%}}(.*){{%\\s*/excerpt\\s*%}}" "$1" .) | safeHTML | markdownify }} - {{ end }} -{{ end }} -{{.Inner}} diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/excerpt.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/excerpt.html deleted file mode 100644 index 7d0eb334..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/excerpt.html +++ /dev/null @@ -1,7 +0,0 @@ -{{with .Get "hidden"}} - {{if eq . "false"}} - {{$.Inner}} - {{end}} -{{else}} - {{.Inner}} -{{end}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/header.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/header.html deleted file mode 100644 index 3c362d83..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/header.html +++ /dev/null @@ -1,16 +0,0 @@ -
- Résumé
- {{.Inner}} - -
Sur cette page
- {{.Page.TableOfContents}} -
Pages liées
-
    - {{ range sort .Page.Sections }} -
  • {{ .Title }}
  • - {{ end }} - {{ range sort .Page.Pages }} -
  • {{ .Title }}
  • - {{ end }} -
-
diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/icon.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/icon.html deleted file mode 100644 index 33ed18ad..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/icon.html +++ /dev/null @@ -1,13 +0,0 @@ -{{ if .IsNamedParams }} -{{if not (hasPrefix (.Get "name") "fa-") }} - -{{else}} - -{{end}} -{{else}} -{{if not (hasPrefix (.Get 0) "fa-") }} - -{{else}} - -{{end}} -{{end}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/image.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/image.html deleted file mode 100644 index f52fac6f..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/image.html +++ /dev/null @@ -1,5 +0,0 @@ - - - -{{.Inner}} - diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/info.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/info.html deleted file mode 100644 index fa5cd341..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/info.html +++ /dev/null @@ -1,10 +0,0 @@ - -{{- if .Get "title" -}} -
- {{ with .Get "title" }}
{{htmlUnescape .}}
{{end}} -
{{.Inner}}
-
-{{- else -}} - -{{- end -}} - diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/label.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/label.html deleted file mode 100644 index 6a06c5c0..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/label.html +++ /dev/null @@ -1 +0,0 @@ -{{.Inner}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/note.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/note.html deleted file mode 100644 index ff62e2f8..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/note.html +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/pagelink.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/pagelink.html deleted file mode 100644 index ede98bf2..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/pagelink.html +++ /dev/null @@ -1,12 +0,0 @@ -{{ if ne (.Get "spacekey") "" }} - -{{else}} - {{$pages := where .Site.AllPages "Title" (( $.Get "pagename") | htmlUnescape ) }} - {{ if eq 0 (len $pages) }} - - {{else}} - {{ range $pages }} - {{$.Inner}} - {{end}} - {{ end }} -{{end}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/pagetreesearch.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/pagetreesearch.html deleted file mode 100644 index ed3fb8ab..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/pagetreesearch.html +++ /dev/null @@ -1 +0,0 @@ -{{.Inner}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/panel.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/panel.html deleted file mode 100644 index e1e0cf62..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/panel.html +++ /dev/null @@ -1,5 +0,0 @@ -
- {{ with .Get "header" }}
{{ htmlUnescape . | markdownify}}
{{end}} -
{{.Inner}}
- {{ with .Get "footer" }}{{end}} -
diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/recently-updated.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/recently-updated.html deleted file mode 100644 index f09bf1bb..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/recently-updated.html +++ /dev/null @@ -1,7 +0,0 @@ -{{.Inner}} - -{{- range first 10 .Site.Pages }} -
  • -{{ .Date.Format "02/01/2006" }} - {{ .Title }} -
  • -{{ end }} diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/relref.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/relref.html deleted file mode 100644 index 5cb81162..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/relref.html +++ /dev/null @@ -1,12 +0,0 @@ -{{- if in (.Get 0) "/_index.md" -}} - {{- $path := (trim (.Get 0) "_index.md") -}} - {{- with .Site.GetPage "section" (trim $path "/") -}} - {{- .URL -}} - {{- end -}} -{{- else -}} - {{- with .Site.GetPage "section" (.Get 0) }} - {{- .URL -}} - {{- else -}} - {{- .Get 0 | relref .Page -}} - {{- end -}} -{{- end -}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/revealjs.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/revealjs.html deleted file mode 100644 index c611b8d9..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/revealjs.html +++ /dev/null @@ -1,66 +0,0 @@ - - -
    - - - - -
    -
    -
    - {{ .Inner | safeHTML}} -
    -
    -
    - - - - -
    -
  • See it fullscreen
  • - - \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/section.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/section.html deleted file mode 100644 index ed3fb8ab..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/section.html +++ /dev/null @@ -1 +0,0 @@ -{{.Inner}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/task.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/task.html deleted file mode 100644 index 980b5fd2..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/task.html +++ /dev/null @@ -1,10 +0,0 @@ -
    - - -
    \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/tasklist.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/tasklist.html deleted file mode 100644 index 4ff4d588..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/tasklist.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - -{{.Inner}} -
    \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/tip.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/tip.html deleted file mode 100644 index ac0d4584..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/tip.html +++ /dev/null @@ -1,10 +0,0 @@ - -{{if .Get "title" }} -
    - {{ with .Get "title" }}
    {{htmlUnescape .}}
    {{end}} -
    {{.Inner}}
    -
    -{{else}} - -{{end}} - diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/toc.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/toc.html deleted file mode 100644 index b46280a1..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/toc.html +++ /dev/null @@ -1,2 +0,0 @@ -{{.TableOfContents}} -{{.Inner}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/unknow.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/unknow.html deleted file mode 100644 index 4d846314..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/unknow.html +++ /dev/null @@ -1 +0,0 @@ -
    {{.Inner}}
    \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/userlink.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/userlink.html deleted file mode 100644 index f69ad9e9..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/userlink.html +++ /dev/null @@ -1 +0,0 @@ -{{.Inner}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/viewppt.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/viewppt.html deleted file mode 100644 index cd6c9cb4..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/viewppt.html +++ /dev/null @@ -1,5 +0,0 @@ -{{range $i, $att := .Page.Params.attachments }} -{{if eq $att.filename ($.Get "name")}} -{{$.Inner}} -{{end}} -{{end}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/viewxls.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/viewxls.html deleted file mode 100644 index a2633037..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/viewxls.html +++ /dev/null @@ -1,5 +0,0 @@ -{{range $i, $att := .Page.Params.attachments }} -{{if eq $att.filename ($.Get "name")}} -{{$.Inner}} -{{end}} -{{end}} \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/warning.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/warning.html deleted file mode 100644 index 14efaff2..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/warning.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -{{if .Get "title" }} -
    - {{ with .Get "title" }}
    {{htmlUnescape .}}
    {{end}} -
    {{.Inner}}
    -
    -{{else}} - -{{end}} - diff --git a/Documentation/docs-site/themes/docdock/layouts/shortcodes/well.html b/Documentation/docs-site/themes/docdock/layouts/shortcodes/well.html deleted file mode 100644 index 3704ab8f..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/shortcodes/well.html +++ /dev/null @@ -1 +0,0 @@ -
    {{.Inner}}
    diff --git a/Documentation/docs-site/themes/docdock/layouts/slide/single.html b/Documentation/docs-site/themes/docdock/layouts/slide/single.html deleted file mode 100644 index e4b103a0..00000000 --- a/Documentation/docs-site/themes/docdock/layouts/slide/single.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - -
    -
    -
    - {{ .RawContent }} -
    -
    -
    - - - diff --git a/Documentation/docs-site/themes/docdock/static/css/bootstrap.min.css b/Documentation/docs-site/themes/docdock/static/css/bootstrap.min.css deleted file mode 100644 index f1468a52..00000000 --- a/Documentation/docs-site/themes/docdock/static/css/bootstrap.min.css +++ /dev/null @@ -1,1884 +0,0 @@ -@font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\2a"; -} -.glyphicon-plus:before { - content: "\2b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -.glyphicon-cd:before { - content: "\e201"; -} -.glyphicon-save-file:before { - content: "\e202"; -} -.glyphicon-open-file:before { - content: "\e203"; -} -.glyphicon-level-up:before { - content: "\e204"; -} -.glyphicon-copy:before { - content: "\e205"; -} -.glyphicon-paste:before { - content: "\e206"; -} -.glyphicon-alert:before { - content: "\e209"; -} -.glyphicon-equalizer:before { - content: "\e210"; -} -.glyphicon-king:before { - content: "\e211"; -} -.glyphicon-queen:before { - content: "\e212"; -} -.glyphicon-pawn:before { - content: "\e213"; -} -.glyphicon-bishop:before { - content: "\e214"; -} -.glyphicon-knight:before { - content: "\e215"; -} -.glyphicon-baby-formula:before { - content: "\e216"; -} -.glyphicon-tent:before { - content: "\26fa"; -} -.glyphicon-blackboard:before { - content: "\e218"; -} -.glyphicon-bed:before { - content: "\e219"; -} -.glyphicon-apple:before { - content: "\f8ff"; -} -.glyphicon-erase:before { - content: "\e221"; -} -.glyphicon-hourglass:before { - content: "\231b"; -} -.glyphicon-lamp:before { - content: "\e223"; -} -.glyphicon-duplicate:before { - content: "\e224"; -} -.glyphicon-piggy-bank:before { - content: "\e225"; -} -.glyphicon-scissors:before { - content: "\e226"; -} -.glyphicon-bitcoin:before { - content: "\e227"; -} -.glyphicon-btc:before { - content: "\e227"; -} -.glyphicon-xbt:before { - content: "\e227"; -} -.glyphicon-yen:before { - content: "\00a5"; -} -.glyphicon-jpy:before { - content: "\00a5"; -} -.glyphicon-ruble:before { - content: "\20bd"; -} -.glyphicon-rub:before { - content: "\20bd"; -} -.glyphicon-scale:before { - content: "\e230"; -} -.glyphicon-ice-lolly:before { - content: "\e231"; -} -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} -.glyphicon-education:before { - content: "\e233"; -} -.glyphicon-option-horizontal:before { - content: "\e234"; -} -.glyphicon-option-vertical:before { - content: "\e235"; -} -.glyphicon-menu-hamburger:before { - content: "\e236"; -} -.glyphicon-modal-window:before { - content: "\e237"; -} -.glyphicon-oil:before { - content: "\e238"; -} -.glyphicon-grain:before { - content: "\e239"; -} -.glyphicon-sunglasses:before { - content: "\e240"; -} -.glyphicon-text-size:before { - content: "\e241"; -} -.glyphicon-text-color:before { - content: "\e242"; -} -.glyphicon-text-background:before { - content: "\e243"; -} -.glyphicon-object-align-top:before { - content: "\e244"; -} -.glyphicon-object-align-bottom:before { - content: "\e245"; -} -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} -.glyphicon-object-align-left:before { - content: "\e247"; -} -.glyphicon-object-align-vertical:before { - content: "\e248"; -} -.glyphicon-object-align-right:before { - content: "\e249"; -} -.glyphicon-triangle-right:before { - content: "\e250"; -} -.glyphicon-triangle-left:before { - content: "\e251"; -} -.glyphicon-triangle-bottom:before { - content: "\e252"; -} -.glyphicon-triangle-top:before { - content: "\e253"; -} -.glyphicon-console:before { - content: "\e254"; -} -.glyphicon-superscript:before { - content: "\e255"; -} -.glyphicon-subscript:before { - content: "\e256"; -} -.glyphicon-menu-left:before { - content: "\e257"; -} -.glyphicon-menu-right:before { - content: "\e258"; -} -.glyphicon-menu-down:before { - content: "\e259"; -} -.glyphicon-menu-up:before { - content: "\e260"; -} - - -/*ALERTS*/ -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #3c763d; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #31708f; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - background-color: #fcf8e3; - border-color: #faebcc; - color: #8a6d3b; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - background-color: #f2dede; - border-color: #ebccd1; - color: #a94442; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} - -/* BUTTONS */ -[role="button"] { - cursor: pointer; -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333333; - text-decoration: none; -} -.btn:active, -.btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; -} -.btn-default { - color: #333333; - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default:focus, -.btn-default.focus { - color: #333333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active:hover, -.btn-default.active:hover, -.open > .dropdown-toggle.btn-default:hover, -.btn-default:active:focus, -.btn-default.active:focus, -.open > .dropdown-toggle.btn-default:focus, -.btn-default:active.focus, -.btn-default.active.focus, -.open > .dropdown-toggle.btn-default.focus { - color: #333333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default .badge { - color: #ffffff; - background-color: #333333; -} -.btn-primary { - color: #ffffff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, -.btn-primary.focus { - color: #ffffff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #ffffff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #ffffff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active:hover, -.btn-primary.active:hover, -.open > .dropdown-toggle.btn-primary:hover, -.btn-primary:active:focus, -.btn-primary.active:focus, -.open > .dropdown-toggle.btn-primary:focus, -.btn-primary:active.focus, -.btn-primary.active.focus, -.open > .dropdown-toggle.btn-primary.focus { - color: #ffffff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #ffffff; -} -.btn-success { - color: #ffffff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, -.btn-success.focus { - color: #ffffff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #ffffff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #ffffff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active:hover, -.btn-success.active:hover, -.open > .dropdown-toggle.btn-success:hover, -.btn-success:active:focus, -.btn-success.active:focus, -.open > .dropdown-toggle.btn-success:focus, -.btn-success:active.focus, -.btn-success.active.focus, -.open > .dropdown-toggle.btn-success.focus { - color: #ffffff; - background-color: #398439; - border-color: #255625; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #ffffff; -} -.btn-info { - color: #ffffff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, -.btn-info.focus { - color: #ffffff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #ffffff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #ffffff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active:hover, -.btn-info.active:hover, -.open > .dropdown-toggle.btn-info:hover, -.btn-info:active:focus, -.btn-info.active:focus, -.open > .dropdown-toggle.btn-info:focus, -.btn-info:active.focus, -.btn-info.active.focus, -.open > .dropdown-toggle.btn-info.focus { - color: #ffffff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #ffffff; -} -.btn-warning { - color: #ffffff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, -.btn-warning.focus { - color: #ffffff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #ffffff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #ffffff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active:hover, -.btn-warning.active:hover, -.open > .dropdown-toggle.btn-warning:hover, -.btn-warning:active:focus, -.btn-warning.active:focus, -.open > .dropdown-toggle.btn-warning:focus, -.btn-warning:active.focus, -.btn-warning.active.focus, -.open > .dropdown-toggle.btn-warning.focus { - color: #ffffff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #ffffff; -} -.btn-danger { - color: #ffffff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, -.btn-danger.focus { - color: #ffffff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #ffffff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #ffffff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active:hover, -.btn-danger.active:hover, -.open > .dropdown-toggle.btn-danger:hover, -.btn-danger:active:focus, -.btn-danger.active:focus, -.open > .dropdown-toggle.btn-danger:focus, -.btn-danger:active.focus, -.btn-danger.active.focus, -.open > .dropdown-toggle.btn-danger.focus { - color: #ffffff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #ffffff; -} -.btn-link { - color: #337ab7; - font-weight: normal; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} -.btn-lg { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.btn-sm { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} - -/*LABELS*/ -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #ffffff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #777777; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #5e5e5e; -} -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #286090; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; -} - - -/*PANELS*/ -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - color: #ffffff; - line-height: 1; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: #777777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, -.btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #ffffff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} - - - -/*PANELS*/ -.panel { - margin-bottom: 20px; - background-color: #ffffff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #dddddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-left: 15px; - padding-right: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #dddddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - border: 0; - margin-bottom: 0; -} -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #dddddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #dddddd; -} -.panel-default { - border-color: #dddddd; -} -.panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #dddddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #dddddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #dddddd; -} -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #ffffff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #ffffff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-lg { - padding: 24px; - border-radius: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} diff --git a/Documentation/docs-site/themes/docdock/static/css/horsey.css b/Documentation/docs-site/themes/docdock/static/css/horsey.css deleted file mode 100644 index 358f72d8..00000000 --- a/Documentation/docs-site/themes/docdock/static/css/horsey.css +++ /dev/null @@ -1,35 +0,0 @@ -.sey-list { - display: none; - position: absolute; - padding: 0; - margin: 0; - list-style-type: none; - box-shadow: 1px 2px 6px; - background-color: #fff; - color: #333; - transition: left 0.1s ease-in-out; - max-height: 70vh; - overflow: auto; - width: 265px; -} -.sey-show { - display: block; -} -.sey-hide { - display: none; -} -.sey-item { - cursor: pointer; - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - padding: 7px; -} -.sey-item:hover { - background-color: #444; - color: #fff; -} -.sey-selected { - background-color: #333; - color: #fff; -} diff --git a/Documentation/docs-site/themes/docdock/static/css/theme-blue.css b/Documentation/docs-site/themes/docdock/static/css/theme-blue.css deleted file mode 100644 index e69de29b..00000000 diff --git a/Documentation/docs-site/themes/docdock/static/css/theme-gold.css b/Documentation/docs-site/themes/docdock/static/css/theme-gold.css deleted file mode 100644 index d202412a..00000000 --- a/Documentation/docs-site/themes/docdock/static/css/theme-gold.css +++ /dev/null @@ -1,61 +0,0 @@ - -:root{ - --SIDE-MAIN-color:#AD974F; - --SIDE-MAIN-TXT-color:#231F20; - --MAIN-HOVER-color:#8E793E; - --SIDE-FOCUS-BACK-color:#8E793E; - --SIDE-FOCUS-FORE-color:#EAEAEA; - --MENU-LINK-color:#EAEAEA; - --MENU-ACTIVE-BACK-color:#231F20; - --MENU-ACTIVE-LINK-color:white; - -} -a, #sidebar ul li.visited > a .read-icon { - color: var(--SIDE-MAIN-color); -} -a:hover { - color: var(--MAIN-HOVER-color); -} -#body a.highlight:after { - background-color: var(--MAIN-HOVER-color); -} -#sidebar { - background-color: var(--SIDE-MAIN-color); -} -#sidebar #header-wrapper { - background: var(--SIDE-MAIN-color); - color: var(--BF-color) - border-color: var(--SIDE-FOCUS-BACK-color); -} -#sidebar .searchbox { - border-color: var(--BF-color); - background: var(--SIDE-FOCUS-BACK-color); -} -#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active { - background: var(--SIDE-FOCUS-BACK-color); -} -#sidebar .searchbox * { - color: var(--SIDE-FOCUS-FORE-color); -} -#sidebar a , #sidebar a:hover { - color: var(--MENU-LINK-color); -} -#sidebar .parent li, #sidebar .active li { - border-color: var(--MENU-ACTIVE-LINK-color); -} -#sidebar ul li.active > a { - background: var(--MENU-ACTIVE-BACK-color); - color: var(--MENU-ACTIVE-LINK-color) !important; -} -#sidebar ul li .category-icon { - color: var(--MENU-LINK-color); -} -#sidebar #shortcuts h3 { - color: var(--SIDE-MAIN-TXT-color); -} - -.footline { - border-color: var(--SIDE-FOCUS-BACK-color); -} - - diff --git a/Documentation/docs-site/themes/docdock/static/css/theme-gray.css b/Documentation/docs-site/themes/docdock/static/css/theme-gray.css deleted file mode 100644 index 772c154a..00000000 --- a/Documentation/docs-site/themes/docdock/static/css/theme-gray.css +++ /dev/null @@ -1,61 +0,0 @@ - -:root{ - --SIDE-MAIN-color:#a0a0a0; - --SIDE-MAIN-TXT-color:black; - --MAIN-HOVER-color:#505050; - --SIDE-FOCUS-BACK-color:#707070; - --SIDE-FOCUS-FORE-color:black; - --MENU-LINK-color:black; - --MENU-ACTIVE-BACK-color:#505050; - --MENU-ACTIVE-LINK-color:white; - -} -a, #sidebar ul li.visited > a .read-icon { - color: var(--SIDE-MAIN-color); -} -a:hover { - color: var(--MAIN-HOVER-color); -} -#body a.highlight:after { - background-color: var(--MAIN-HOVER-color); -} -#sidebar { - background-color: var(--SIDE-MAIN-color); -} -#sidebar #header-wrapper { - background: var(--SIDE-MAIN-color); - color: var(--BF-color) - border-color: var(--SIDE-FOCUS-BACK-color); -} -#sidebar .searchbox { - border-color: var(--BF-color); - background: var(--SIDE-FOCUS-BACK-color); -} -#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active { - background: var(--SIDE-FOCUS-BACK-color); -} -#sidebar .searchbox * { - color: var(--SIDE-FOCUS-FORE-color); -} -#sidebar a , #sidebar a:hover { - color: var(--MENU-LINK-color); -} -#sidebar .parent li, #sidebar .active li { - border-color: var(--MENU-ACTIVE-LINK-color); -} -#sidebar ul li.active > a { - background: var(--MENU-ACTIVE-BACK-color); - color: var(--MENU-ACTIVE-LINK-color) !important; -} -#sidebar ul li .category-icon { - color: var(--MENU-LINK-color); -} -#sidebar #shortcuts h3 { - color: var(--SIDE-MAIN-TXT-color); -} - -.footline { - border-color: var(--SIDE-FOCUS-BACK-color); -} - - diff --git a/Documentation/docs-site/themes/docdock/static/css/theme-green.css b/Documentation/docs-site/themes/docdock/static/css/theme-green.css deleted file mode 100644 index 7db0721c..00000000 --- a/Documentation/docs-site/themes/docdock/static/css/theme-green.css +++ /dev/null @@ -1,61 +0,0 @@ - -:root{ - --SIDE-MAIN-color:#91A437; - --SIDE-MAIN-TXT-color:black; - --MAIN-HOVER-color:#465400; - --SIDE-FOCUS-BACK-color:#667B00; - --SIDE-FOCUS-FORE-color:black; - --MENU-LINK-color:black; - --MENU-ACTIVE-BACK-color:#465400; - --MENU-ACTIVE-LINK-color:white; - -} -a, #sidebar ul li.visited > a .read-icon { - color: var(--SIDE-MAIN-color); -} -a:hover { - color: var(--MAIN-HOVER-color); -} -#body a.highlight:after { - background-color: var(--MAIN-HOVER-color); -} -#sidebar { - background-color: var(--SIDE-MAIN-color); -} -#sidebar #header-wrapper { - background: var(--SIDE-MAIN-color); - color: var(--BF-color) - border-color: var(--SIDE-FOCUS-BACK-color); -} -#sidebar .searchbox { - border-color: var(--BF-color); - background: var(--SIDE-FOCUS-BACK-color); -} -#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active { - background: var(--SIDE-FOCUS-BACK-color); -} -#sidebar .searchbox * { - color: var(--SIDE-FOCUS-FORE-color); -} -#sidebar a , #sidebar a:hover { - color: var(--MENU-LINK-color); -} -#sidebar .parent li, #sidebar .active li { - border-color: var(--MENU-ACTIVE-LINK-color); -} -#sidebar ul li.active > a { - background: var(--MENU-ACTIVE-BACK-color); - color: var(--MENU-ACTIVE-LINK-color) !important; -} -#sidebar ul li .category-icon { - color: var(--MENU-LINK-color); -} -#sidebar #shortcuts h3 { - color: var(--SIDE-MAIN-TXT-color); -} - -.footline { - border-color: var(--SIDE-FOCUS-BACK-color); -} - - diff --git a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Bold.ttf b/Documentation/docs-site/themes/docdock/static/fonts/Lato-Bold.ttf deleted file mode 100644 index 74343694..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Bold.ttf and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Bold.woff2 b/Documentation/docs-site/themes/docdock/static/fonts/Lato-Bold.woff2 deleted file mode 100644 index 254684c7..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Bold.woff2 and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Regular.ttf b/Documentation/docs-site/themes/docdock/static/fonts/Lato-Regular.ttf deleted file mode 100644 index 04ea8efb..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Regular.ttf and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Regular.woff2 b/Documentation/docs-site/themes/docdock/static/fonts/Lato-Regular.woff2 deleted file mode 100644 index c4e8b1ab..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/Lato-Regular.woff2 and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.eot b/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a4953..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.svg b/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb5490..00000000 --- a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.ttf b/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc60..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.woff b/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e612858..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.woff2 b/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b54..00000000 Binary files a/Documentation/docs-site/themes/docdock/static/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/Documentation/docs-site/themes/docdock/static/js/horsey.js b/Documentation/docs-site/themes/docdock/static/js/horsey.js deleted file mode 100644 index a22a115e..00000000 --- a/Documentation/docs-site/themes/docdock/static/js/horsey.js +++ /dev/null @@ -1,1571 +0,0 @@ -!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.horsey=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o