Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jarvisteach committed May 23, 2019
1 parent a258672 commit 99f21e7
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 106 deletions.
38 changes: 38 additions & 0 deletions docs/mkdocs/custom_united/main.html
Expand Up @@ -3,8 +3,46 @@
{%- block extrahead %}
<meta name="keywords" content="Python, GUI, widgets, tkinter, appJar, label, button">
<meta name="title" content="Python library for building GUIs, using tkinter toolkit">
<div class="corner-ribbon">
<a href="https://github.com/jarvisteach/appJar/blob/appJar/releases/appJar.zip?raw=true">Version 0.94 out now!</a>
</div>
{% endblock %}

{%- block extra_head %}
<div class="corner-ribbon">
<a href="https://github.com/jarvisteach/appJar/blob/appJar/releases/appJar.zip?raw=true">Version 0.94 out now!</a>
</div>
{{ super() }}
{%- endblock %}

{%- block repo %}
<li>
<a href="/pythonLessons" target="_blank">
<i class="fa fa-mortar-board"></i> Learn
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCe_fC78lGgA-EHyK9nZX NVA" target="_blank">
<i class="fa fa-youtube"></i> Watch
</a>
</li>
<li>
<a href="{{ config.repo_url }}">
<i class="fa fa-github"></i> {{ config.repo_name }}
</a>
</li>
{%- if 'search' in config['plugins'] %}
<li>
<a href="#" data-toggle="modal" data-target="#mkdocs_search_modal">
<i class="fa fa-search"></i> Search
</a>
</li>
{%- endif %}
{%- endblock %}

{%- block search_button %}
{%- endblock %}

{%- block footer %}
<!-- Google Ads -->
<hr>
Expand Down
101 changes: 0 additions & 101 deletions docs/mkdocs/custom_united/nav.html

This file was deleted.

2 changes: 1 addition & 1 deletion docs/mkdocs/docs/widgets/widgets.md
Expand Up @@ -12,7 +12,7 @@ Nearly all widgets in appJar provide the same three functions:
* (Often) - **GET** the widget (using its unique title) - this gets the contents of the widget (usually done in a function)
* (Sometimes) - **SET** the widget (using its unique title) - this changes what's in the widget

On top of these, there is a common set of functions for [changing widgets](pythonWidgetOptions.md).
On top of these, there is a common set of functions for [changing widgets](/pythonWidgetOptions.md).
As well as some specialist functions, unique to each widget (see below).

##Auto-Labelled Widgets
Expand Down
7 changes: 3 additions & 4 deletions docs/mkdocs/mkdocs.yml
Expand Up @@ -3,7 +3,7 @@ site_url: http://appjar.info
site_dir: ../../../jarvisteach.github.io/
repo_url: https://github.com/jarvisteach/appJar
google_analytics: ['UA-79206647-1', 'appjar.info']
copyright: <p><a href='/License'>&#169; Richard Jarvis, 2015-2018</a></p>
copyright: <p><a href='/License'>&#169; Richard Jarvis, 2015-2019</a></p>
site_description: The easiest way to build tkinter GUIs in Python.
site_author: Richard Jarvis
extra_css: [extra.css]
Expand All @@ -14,10 +14,9 @@ markdown_extensions:

theme:
name: united
custom_dir: custom_united
custom_dir: custom_united/

pages:
- Welcome: index.md
nav:
- Fillings:
- Widgets:
- Output Widgets: outputWidgets.md
Expand Down

0 comments on commit 99f21e7

Please sign in to comment.