8000 [WIP] Change site theme to Material by revolter · Pull Request #696 · fastlane/docs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[WIP] Change site theme to Material #696

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ name = "pypi"
[packages]
markdown-include = "==0.5.1"
mdx-truly-sane-lists = "==1.0"
mkdocs = "==0.15.3"
pymdown-extensions = "==1.1"
mkdocs = "==1.0.1"
pymdown-extensions = "==5.0"
mkdocs-material = "==3.0.3"

[dev-packages]

Expand Down
80 changes: 41 additions & 39 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added docs/img/fastlane.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 32 additions & 11 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,45 @@
---
# Project information
site_name: fastlane docs
theme: readthedocs
copyright: Copyright &copy; 2018 <a href="https://fastlane.tools">fastlane</a>
site_author: fastlane team
site_description: Documentation for fastlane tools, the easiest way to automate building
and releasing your iOS and Android apps
site_favicon: img/favicon.ico
repo_url: https://github.com/fastlane/docs
site_author: fastlane team

# Repository
repo_url: https://github.com/fastlane/fastlane
edit_uri: ''

# Copyright
copyright: Copyright &copy; 2018 <a href="https://fastlane.tools">fastlane</a>

# Configuration
theme:
name: material
favicon: img/favicon.ico
logo: img/fastlane.png

# Customization
extra:
social:
- type: twitter
link: https://twitter.com/FastlaneTools
strict: true

# Analytics
google_analytics:
- UA-18658848-13
- docs.fastlane.tools
strict: true

# Extensions
markdown_extensions:
- pymdownx.headeranchor
- toc:
permalink: True
- markdown.extensions.attr_list
- markdown_include.include
- mdx_truly_sane_lists
theme_dir: theme
pages:

# Pages
nav:
- Home: index.md
- Getting Started:
- iOS:
Expand All @@ -36,7 +58,7 @@ pages:
- Cross Platform:
- React Native: getting-started/cross-platform/react-native.md
- Flutter: getting-started/cross-platform/flutter.md
- Actions:
- Actions:
- Available Actions: actions.md
- Create Your Own Action: create-action.md
- _Actions:
Expand Down Expand Up @@ -276,4 +298,3 @@ pages:
- Other: advanced/other.md
- _Deprecated:
- Advanced: advanced.md

0