Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Hardcode
Browse files Browse the repository at this point in the history
  • Loading branch information
JimBobSquarePants committed Sep 6, 2023
1 parent 9c05067 commit 11a9613
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _includes/classnav.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h3 id="classes">Classes</h3>
<ul class="no-bullets">
{% for page in sortedpages %}
{% if page.root == {{include.param}} and page.layout == "class" %}
<li><a href="{{ baseurl }}{{ relative_url }}{{ page.url }}">{{ page.title }}</a></li>
<li><a href="/ImageProcessor{{ relative_url }}{{ page.url }}">{{ page.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
Expand Down
2 changes: 1 addition & 1 deletion _includes/methodnav.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h3 id="methods">Methods</h3>
<ul class="no-bullets">
{% for page in sortedpages %}
{% if page.methodof == {{include.param}} and page.layout == "method" %}
<li><a href="{{ baseurl }}{{ relative_url }}{{ page.url }}">{{ page.title }}</a></li>
<li><a href="/ImageProcessor{{ relative_url }}{{ page.url }}">{{ page.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
Expand Down
2 changes: 1 addition & 1 deletion _includes/pluginsnav.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h3 id="plugins">Plugins</h3>
<ul class="no-bullets">
{% for page in sortedpages %}
{% if page.root == {{include.param}} and page.layout == "plugin" %}
<li><a href="{{baseurl}}{{ relative_url }}{{ page.url }}">{{ page.title }}</a></li>
<li><a href="/ImageProcessor{{ relative_url }}{{ page.url }}">{{ page.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
Expand Down

0 comments on commit 11a9613

Please sign in to comment.