Insider features (#1113)
* add dark/light theme * cookies consent * adjust colours * feedback widget * add a specific insider config * add grid on index * clean extensions and plugin files (was mixed) * add socials Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>pull/1119/head 22.7.0
parent
c3cb61a8ec
commit
daf25602e8
@ -1,6 +0,0 @@ |
||||
# list file to not track by the local-history extension. comment line starts with a '#' character |
||||
# each line describe a regular expression pattern (search for "Javascript regex") |
||||
# it will relate to the workspace directory root. for example: |
||||
# ".*\.txt" ignores any file with "txt" extension |
||||
# "/test/.*" ignores all the files under the "test" directory |
||||
# ".*/test/.*" ignores all the files under any "test" directory (even under sub-folders) |
File diff suppressed because one or more lines are too long
@ -1,10 +1,8 @@ |
||||
Markdown==3.4.1 |
||||
markdown-fenced-code-tabs==1.0.5 |
||||
markdown-include==0.6.0 |
||||
markdown-include==0.7.0 |
||||
mkdocs-markdownextradata-plugin==0.2.5 |
||||
mkdocs-exclude==1.0.2 |
||||
mkdocs-redirects==1.0.4 |
||||
mkdocs-git-revision-date-localized-plugin==1.1.0 |
||||
mkdocs-minify-plugin==0.5.0 |
||||
plantuml-markdown==3.5.3 |
||||
|
||||
plantuml-markdown==3.6.2 |
||||
|
@ -0,0 +1,27 @@ |
||||
--- |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
# the License. You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
# specific language governing permissions and limitations under the License. |
||||
INHERIT: mkdocs.yml # DO NOT MODIFY THIS LINE |
||||
|
||||
plugins: |
||||
meta: |
||||
meta_file: '**/.meta.yml' |
||||
|
||||
extra: |
||||
# indicates to the templating system that the current build uses insider |
||||
# used to display insider only features in templates and prevent build fail on the normal version. |
||||
is_insider: true |
||||
|
||||
# The following has to be in this file and mkdocs.yml file because |
||||
# readthedocs.org is overriding it wrong if not in the initial config file but in a child file. |
||||
# The side effect is that it also allows us to have different scripts and CSS for insider theme |
||||
extra_css: |
||||
- assets/stylesheets/custom_theme.css |
||||
extra_javascript: |
||||
- assets/javascripts/custom_theme.js |
Loading…
Reference in new issue