-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from GannettDigital/QE-1743
QE-1743: Update design of simulato web page
- Loading branch information
Showing
94 changed files
with
11,199 additions
and
4,413 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,7 @@ node_modules | |
.DS_Store | ||
|
||
#tests | ||
test | ||
test | ||
|
||
# docs | ||
docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.bundle/ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "Page Not Found" | ||
search: exclude | ||
--- | ||
|
||
Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
source 'https://rubygems.org' | ||
gem "github-pages", group: :jekyll_plugins | ||
source "https://rubygems.org" | ||
|
||
gem 'github-pages', group: :jekyll_plugins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,93 @@ | ||
remote_theme: "mmistakes/minimal-mistakes" | ||
minimal_mistakes_skin: "air" | ||
title: "Simulato" | ||
title_seperator: "|" | ||
feed: false | ||
description: "Simulato is a tool that uses model based testing techniques to generate and run tests for web page user interfaces in the browser." | ||
url: https://GannettDigital.github.io | ||
# baseurl: /simulato | ||
repository: "GannettDigital/simulato" | ||
include: ["_pages"] | ||
repository: tomjoht/documentation-theme-jekyll | ||
|
||
output: web | ||
# this property is useful for conditional filtering of content that is separate from the PDF. | ||
|
||
topnav_title: Simulato | ||
# this appears on the top navigation bar next to the home button | ||
|
||
site_title: Simulato Documentation | ||
# this appears in the html browser tab for the site title (seen mostly by search engines, not users) | ||
|
||
company_name: Gannett Co, Inc. | ||
# this appears in the footer | ||
|
||
host: 127.0.0.1 | ||
# the preview server used. Leave as is. | ||
|
||
port: 4000 | ||
# the port where the preview is rendered. You can leave this as is unless you have other Jekyll builds using this same port that might cause conflicts. in that case, use another port such as 4006. | ||
|
||
exclude: | ||
- .idea/ | ||
- .gitignore | ||
- vendor | ||
# these are the files and directories that jekyll will exclude from the build | ||
|
||
feedback_disable: true | ||
# if you uncomment the previous line, the Feedback link gets removed | ||
|
||
# feedback_text: "Need help?" | ||
# if you uncomment the previous line, it changes the Feedback text | ||
|
||
# feedback_link: "http://helpy.io/" | ||
# if you uncomment the previous line, it changes where the feedback link points to | ||
|
||
highlighter: rouge | ||
# library used for syntax highlighting | ||
|
||
markdown: kramdown | ||
kramdown: | ||
input: GFM | ||
auto_ids: true | ||
hard_wrap: false | ||
syntax_highlighter: rouge | ||
|
||
# filter used to process markdown. note that kramdown differs from github-flavored markdown in some subtle ways | ||
|
||
collections: | ||
tooltips: | ||
output: false | ||
# collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true | ||
|
||
defaults: | ||
# _pages | ||
- scope: | ||
path: "_pages" | ||
type: pages | ||
- | ||
scope: | ||
path: "" | ||
type: "pages" | ||
values: | ||
layout: single | ||
toc: true | ||
sidebar: | ||
nav: "docs" | ||
- scope: | ||
layout: "page" | ||
comments: true | ||
search: true | ||
sidebar: home_sidebar | ||
topnav: topnav | ||
- | ||
scope: | ||
path: "" | ||
type: pages | ||
type: "tooltips" | ||
values: | ||
layout: single | ||
sidebar: | ||
nav: "docs" | ||
layout: "page" | ||
comments: true | ||
search: true | ||
tooltip: true | ||
|
||
- | ||
scope: | ||
path: "" | ||
type: "posts" | ||
values: | ||
layout: "post" | ||
comments: true | ||
search: true | ||
sidebar: home_sidebar | ||
topnav: topnav | ||
|
||
# these are defaults used for the frontmatter for these file types | ||
|
||
sidebars: | ||
- tutorial_sidebar | ||
|
||
description: "Simulato is a tool that uses model based testing techniques to generate and run tests for web page user interfaces in the browser." | ||
# the description is used in the feed.xml file | ||
|
||
url: https://GannettDigital.github.io |
Oops, something went wrong.