File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,15 @@ Usage:
26
26
{% for node in pages_list %}
27
27
{% if node.title != null %}
28
28
{% if group == null or group == node.group %}
29
- {% if page.url == node.url %}
30
- <li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li>
31
- {% else %}
32
- <li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li>
33
- {% endif %}
29
+ {% if page.url == node.url %}
30
+ <li class="active">
31
+ {% else %}
32
+ <li>
33
+ {% endif %}
34
+ {% if node.image != null %}
35
+ <img style="height: 1em; vertical-align:top; margin: 0px" src="{{node.image}}"></img>
36
+ {% endif %}
37
+ <a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li>
34
38
{% endif %}
35
39
{% endif %}
36
40
{% endfor %}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ <h1>{{ title }}</h1>
38
38
< p > This document has moved!</ p >
39
39
{% endif %}
40
40
41
- < p > Redirecting to < a href ="{{ page.target }} "> {{ targetname }}</ a > in {{ time }} seconds .</ p >
41
+ < p > Redirecting to < a href ="{{ page.target }} "> {{ targetname }}</ a > .</ p >
42
42
43
43
</ body >
44
44
</ html >
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ group: navigation
5
5
order : 7
6
6
targettitle : Taking you to github.com/PlusToolkit/PlusLib
7
7
time : 0
8
+ message : " "
8
9
target : " https://github.com/PlusToolkit/PlusLib"
9
10
description : " "
11
+ image : " images/GitHub-Mark-Light-32px.png"
10
12
---
You can’t perform that action at this time.
0 commit comments