summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/_data/manual.yml2
-rw-r--r--docs/_includes/manual.html3
-rw-r--r--docs/_includes/plugins.html6
-rw-r--r--docs/_includes/reference.html6
4 files changed, 10 insertions, 7 deletions
diff --git a/docs/_data/manual.yml b/docs/_data/manual.yml
index 29f2c05..f6c1de5 100644
--- a/docs/_data/manual.yml
+++ b/docs/_data/manual.yml
@@ -17,7 +17,7 @@ docs:
url: /win-acme/manual/advanced-use
- title: Validation problems
- url: /win-acme/manual/advanced-use
+ url: /win-acme/manual/validation-problems
- title: Upgrading
url: /win-acme/manual/upgrading \ No newline at end of file
diff --git a/docs/_includes/manual.html b/docs/_includes/manual.html
index c0dd968..56098c8 100644
--- a/docs/_includes/manual.html
+++ b/docs/_includes/manual.html
@@ -2,7 +2,6 @@
{% for item in site.data.manual.docs %}
{% assign z = '/win-acme' | append: page.url %}
{% assign x = item.url | append: '.html' %}
- <li><a href="{{ item.url }}" {% if z == x %}style="color: red;" {% endif %}>
- {{ item.title }} {{ z }} {{ x }}</a></li>
+ <li><a href="{{ item.url }}" {% if z == x %}style="color: #e83e8c;" {% endif %}>{{ item.title }}</a></li>
{% endfor %}
</ul>
diff --git a/docs/_includes/plugins.html b/docs/_includes/plugins.html
index ebc6fa0..72c077f 100644
--- a/docs/_includes/plugins.html
+++ b/docs/_includes/plugins.html
@@ -1,6 +1,8 @@
<a href="{{ 'reference' | relative_url }}">< Reference</a>
<ul>
{% for item in site.data.plugins.docs %}
- <li><a href="{{ item.url }}">{{ item.title }}</a></li>
- {% endfor %}
+ {% assign z = '/win-acme' | append: page.url %}
+ {% assign x = item.url | append: '.html' %}
+ <li><a href="{{ item.url }}" {% if z == x %}style="color: #e83e8c;" {% endif %}>{{ item.title }}</a></li>
+ {% endfor %}
</ul>
diff --git a/docs/_includes/reference.html b/docs/_includes/reference.html
index b7d5377..c3d8b99 100644
--- a/docs/_includes/reference.html
+++ b/docs/_includes/reference.html
@@ -1,5 +1,7 @@
<ul>
{% for item in site.data.reference.docs %}
- <li><a href="{{ item.url }}">{{ item.title }}</a></li>
- {% endfor %}
+ {% assign z = '/win-acme' | append: page.url %}
+ {% assign x = item.url | append: '.html' %}
+ <li><a href="{{ item.url }}" {% if z == x %}style="color: #e83e8c;" {% endif %}>{{ item.title }}</a></li>
+ {% endfor %}
</ul>