diff --git a/CHANGELOG b/CHANGELOG index 3646922f9..21239439c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -mkdocs-material-0.x.x (2016-xx-xx) +mkdocs-material-0.1.2 (2016-02-16) * Fixed styles for deep navigational hierarchies * Fixed webfont delivery problem when hosted in subdirectories diff --git a/bower.json b/bower.json index 58111606e..5e5fc5f7b 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "0.1.1", + "version": "0.1.2", "description": "A material design theme for MkDocs", "homepage": "http://squidfunk.github.io/mkdocs-material/", "authors": [ diff --git a/docs/getting-started.md b/docs/getting-started.md index dba642f56..9574c5631 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -116,7 +116,8 @@ extra: If you want to change the fonts or colors - you are lucky. The Material theme is built with a sophisticated asset pipeline. See -[this article](/customization) for more information on advanced customization. +[this article](customization.md) for more information on advanced +customization. ## Extensions @@ -174,8 +175,13 @@ This will print the following: !!! note Nothing to see here, move along. -The Material template adds a light color for the `note` class and a red color -for the `warning` class. More colors can be freely defined. +The Material template adds a neutral color for the `note` class and a red color +for the `warning` class. + +!!! warning + You shall not pass. + +More colors can be freely defined. ## Full example @@ -186,7 +192,7 @@ Below is a full example configuration for a mkdocs.yml: site_name: 'My Project' site_description: 'A short description of my project' site_author: 'John Doe' -site_url: 'https://github.com/my-github-handle/my-project' +site_url: 'https://my-github-handle.github.io/my-project' # Repository repo_name: 'GitHub' diff --git a/docs/images/logo.png b/docs/images/logo.png index 6faca5f64..573aca138 100644 Binary files a/docs/images/logo.png and b/docs/images/logo.png differ diff --git a/docs/index.md b/docs/index.md index d106ec0fb..f6fc12fec 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,7 +7,7 @@ Google's [material design][] guidelines. MkDocs is an excellent static site documentation generator that is meant for building good looking project documentation. -![Material Screenshot](/images/screen.png) +![Material Screenshot](images/screen.png) This theme is **optimized for all sorts of devices** and is built from scratch without any bloated Javascript or CSS Frameworks with **only 24kb of JS and @@ -24,8 +24,8 @@ browsers. - Well-tested and **optimized CSS and Javascript**, including a cross-browser fixed/sticky header, a drawer that even works without Javascript using - the `checkbox:checked` hack with fallbacks, **responsive tables** that scroll - when the screen is too small and **well-defined print styles**. + the `:checked` hack with fallbacks, **responsive tables** that scroll when + the screen is too small and **well-defined print styles**. - Extra configuration options like **project logo**, links to the authors **GitHub and Twitter accounts** and display of the **amount of stars** the @@ -38,7 +38,7 @@ browsers. - **Web application capability** on iOS - when the page is saved to the homescreen, it behaves and looks like a native application. -See the [getting started guide](/getting-started) for instructions how to get +See the [getting started guide](getting-started.md) for instructions how to get it up and running. [material design]: https://www.google.com/design/spec/material-design diff --git a/mkdocs.yml b/mkdocs.yml index e3d57f9e3..ebc2ab6b0 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -36,7 +36,7 @@ theme_dir: material # Options extra: - version: 0.1.1 + version: 0.1.2 logo: images/logo.png font: text: Ubuntu diff --git a/package.json b/package.json index 53de0467d..90bd35f18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "0.1.1", + "version": "0.1.2", "description": "A material design theme for MkDocs", "homepage": "http://squidfunk.github.io/mkdocs-material/", "authors": [ diff --git a/setup.py b/setup.py index f90f2e500..ab2043347 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ from setuptools import setup, find_packages # Package description setup( name = 'mkdocs-material', - version = '0.1.1', + version = '0.1.2', url = 'http://squidfunk.github.io/mkdocs-material/', license = 'MIT', description = 'A material design theme for MkDocs',