Browse Source

* Fixed issues with index cards not displaying.

* Defaulted cards to nav_title if present.
pull/1035/head
Glenn Penridge 6 years ago
parent
commit
9c57ee1c27
  1. 2
      _includes/index.html
  2. 7
      advanced/index.md
  3. 9
      cloud-deployment-guide/index.md
  4. 9
      configure/index.md
  5. 9
      demo/index.md
  6. 7
      enterprise/index.md
  7. 7
      general-configuration-guide/index.md
  8. 7
      integrations/index.md
  9. 7
      plugins/index.md
  10. 7
      release-notes/index.md
  11. 7
      tinydrive/index.md
  12. 7
      ui-components/index.md

2
_includes/index.html

@ -3,7 +3,7 @@
{% capture path %}{{url}}index.html{% endcapture %}
{% assign_page link_data = path %}
<div>
<h2><a href="{{ site.baseurl }}{{ url }}">{{ link_data.title }}</a></h2>
<h2><a href="{{ site.baseurl }}{{ url }}">{{ link_data.title_nav | or:link_data.title }}</a></h2>
<p>{{ link_data.description_short | or:link_data.description }}</p>
</div>
{% endfor %}

7
advanced/index.md

@ -5,6 +5,11 @@ title_nav: Advanced topics
description: Information and guides for developers wanting to build advanced capabilities into TinyMCE.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "advanced" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'advanced'" | first | map: "pages" %}
{% include index.html links=links %}

9
cloud-deployment-guide/index.md

@ -5,6 +5,11 @@ title_nav: Cloud deployment guide
description: Start here for Tiny Cloud.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "cloud-deployment-guide" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'cloud-deployment-guide'" | first | map: "pages" %}
{% include index.html links=links %}
{% include index.html links=links %}

9
configure/index.md

@ -6,6 +6,11 @@ description_short: The most customizable rich text editor.
description: TinyMCE is not only the most advanced rich text editor it's also the most customizable.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "configure" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'configure'" | first | map: "pages" %}
{% include index.html links=links %}
{% include index.html links=links %}

9
demo/index.md

@ -12,6 +12,11 @@ redirect_from:
- /example-tutorial/
- /try-tinymce/
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "demo" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'demo'" | first | map: "pages" %}
{% include index.html links=links %}
{% include index.html links=links %}

7
enterprise/index.md

@ -5,6 +5,11 @@ title_nav: Premium features
description: Premium features from the makers of TinyMCE.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "enterprise" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'enterprise'" | first | map: "pages" %}
{% include index.html links=links %}

7
general-configuration-guide/index.md

@ -5,6 +5,11 @@ title_nav: Introduction &amp; getting started
description: New to self-hosting TinyMCE? Start here.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "general-configuration-guide" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'general-configuration-guide'" | first | map: "pages" %}
{% include index.html links=links %}

7
integrations/index.md

@ -5,6 +5,11 @@ title_nav: Integrations
description: Faster development with integrations of TinyMCE into your favorite framework or CMS.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "integrations" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'integrations'" | first | map: "pages" %}
{% include index.html links=links %}

7
plugins/index.md

@ -6,6 +6,11 @@ description_short: This section will help you configure and extend your editor i
description: TinyMCE is an incredibly powerful, flexible and customizable rich text editor. This section will help you configure and extend your editor instance.
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "plugins" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'plugins'" | first | map: "pages" %}
{% include index.html links=links %}

7
release-notes/index.md

@ -5,6 +5,11 @@ title_nav: Release notes for TinyMCE 5
keywords: releasenotes newfeatures deleted technologypreview bugfixes knownissues
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "release-notes" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'release-notes'" | first | map: "pages" %}
{% include index.html links=links %}

7
tinydrive/index.md

@ -5,6 +5,11 @@ title_nav: Tiny Drive
description: Tiny Drive
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "tinydrive" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'tinydrive'" | first | map: "pages" %}
{% include index.html links=links %}

7
ui-components/index.md

@ -6,7 +6,12 @@ description: The configurable UI components available for customization.
keywords: toolbar toolbarbuttons buttons toolbarbuttonsapi
type: folder
---
{% assign navigaton = site.data.nav %}
{% for entry in navigaton %}
{% if entry.url == "ui-components" %}
{% assign links = entry.pages %}
{% endif %}
{% endfor %}
{% assign links = site.data | where_exp:"nav", "nav.url == 'ui-components'" | first | map: "pages" %}
{% include index.html links=links %}
Loading…
Cancel
Save